프로그래머스/Lv.0
[프로그래머스 C#] a와 b 출력하기
suniverse
2023. 8. 30. 07:44
💻
using System;
public class Example
{
public static void Main()
{
String[] s;
Console.Clear();
s = Console.ReadLine().Split(' ');
int a = Int32.Parse(s[0]);
int b = Int32.Parse(s[1]);
Console.WriteLine("a = " + a);
Console.WriteLine("b = " + b);
}
}