using System;
class Program {
static void Main(string[] args) {
string stringInput = Console.ReadLine();
string[] arrayInput = stringInput.Split(' ', StringSplitOptions.None);
long[] intResult = new long[3] {0, 0, 0};
for (int i = 0; i < 3; i++) {
intResult[i] = System.Convert.ToInt64(arrayInput[i]);
}
long total = 0;
for (int i = 0; i < 3; i++) {
total += intResult[i];
}
Console.WriteLine(total);
}
}
문제 출처
https://www.acmicpc.net/problem/11382
'ComputerScience > Coding Test' 카테고리의 다른 글
C# 백준 10757번: 큰 수 A + B (0) | 2022.11.19 |
---|---|
백준 2420번: 사파리월드 (0) | 2022.11.12 |
백준 9086번: 문자열 (0) | 2022.11.12 |
백준 11718번: 그대로 출력하기 (0) | 2022.11.12 |
백준 2754번: 학점계산 (0) | 2022.11.12 |