using System;
class Program {
static void Main(string[] args) {
string stringInput = Console.ReadLine();
string[] array = stringInput.Split(' ', StringSplitOptions.None);
long a = System.Convert.ToInt64(array[0]);
long b = System.Convert.ToInt64(array[1]);
long result = 0;
if (a < b) {
result = b - a;
}
else {
result = a - b;
}
result = Math.Abs(result);
Console.WriteLine(result);
}
}
문제 출처
https://www.acmicpc.net/problem/2420
'ComputerScience > Coding Test' 카테고리의 다른 글
C# 백준 1271번: 엄청난 부자2 (0) | 2022.11.19 |
---|---|
C# 백준 10757번: 큰 수 A + B (0) | 2022.11.19 |
백준 11382번: 꼬마 정민 (0) | 2022.11.12 |
백준 9086번: 문자열 (0) | 2022.11.12 |
백준 11718번: 그대로 출력하기 (0) | 2022.11.12 |