백준 알고리즘(C/C++) - 10951번 A+B - 4
- 알고리즘
- 2021. 6. 2.
문제를 보면 종료 조건이 없다.
파일의 끝을 의미하는 EOF가 생각이 나서 EOF로 문제를 풀어보았다.
#include <stdio.h>
int main(void) {
int a, b;
while (scanf("%d %d", &a, &b) != EOF)
printf("%d\n", a + b);
return 0;
}
#include <iostream>
int main() {
int a, b;
while (std::cin >> a >> b)
std::cout << a + b << std::endl;
return 0;
}