import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
long A = sc.nextLong();
long B = sc.nextLong();
long C = sc.nextLong();
System.out.println(A + B + C);
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[백준] 2741번 (0) | 2023.01.21 |
---|---|
[백준] 2420번 (0) | 2023.01.21 |
[백준] 7287번 (0) | 2023.01.21 |
[백준] 10699 (0) | 2023.01.21 |
[백준] 1157번 (0) | 2023.01.21 |