백준 BOJ C# 2557

2020. 1. 8. 17:56백준 알고리즘 단계별/입출력과 사칙연산

반응형

 

 

1
2
3
4
5
6
7
8
9
10
using System;
using static System.Console;
 
class MainApp
{
    static void Main()
    {
       Console.WriteLine("Hello World!");
    }
}

 

반응형