백준 알고리즘 문제 풀이 c/c++ -10951-

한창희·2021년 8월 12일
0

백준 알고리즘

목록 보기
6/16

https://www.acmicpc.net/problem/10951

  • 입력 종료 조건이 나와있지 않다
  • EOF 사용

참고링크
https://wanna-b.tistory.com/59

#include <stdio.h>
#include <algorithm>

using namespace std;


int main() {


	int a, b;
	

	while (scanf("%d %d", &a, &b) != EOF){

		printf("%d\n", a + b);

	}


	return 0;
}
profile
매 순간 최선을 다하자

0개의 댓글