import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int a, b;
a = sc.nextInt();
b = sc.nextInt();
System.out.println(a + b);
}
}
'백준알고리즘 > Bronze V' 카테고리의 다른 글
2338번: 긴자리 계산 (0) | 2022.06.20 |
---|---|
1330번: 두 수 비교하기 (0) | 2022.06.19 |
1271번: 엄청난 부자2 (0) | 2022.06.19 |
1008번: A/B (0) | 2022.06.19 |
1001번: A-B (0) | 2022.06.19 |