1. C++
#include <stdio.h>
int main(void)
{
int i = 0;
int j = 0;
scanf("%d %d", &i, &j);
printf("%d", i+j);
return 0;
}
2. Python
A, B = list(map(int, input().split()))
print (A+B)
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 1003번 피보나치 함수 (파이썬) (0) | 2022.03.11 |
---|---|
[백준] 1001번 A-B (C++) (0) | 2022.03.11 |
[백준] 1010번 다리 놓기 (파이썬) (0) | 2022.03.08 |
[백준 알고리즘] 1913번 달팽이 (C++) (0) | 2021.11.09 |
[백준 알고리즘] 2908번 상수 (C++) (0) | 2021.11.01 |