본문 바로가기

코딩 테스트

백준 10951

EOF 활용 문제

#include <iostream>
using namespace std;

int main(void)
{
	ios::sync_with_stdio(false);
	cin.tie(NULL);


	int a = 1 , b = 1;
	while(1)
	{
		cin >> a >> b;
		if (cin.eof())
			break;
		cout << a + b << endl;
	}


	return 0;
}

'코딩 테스트' 카테고리의 다른 글

백준 11050(r)  (0) 2023.06.27
백준 2164  (0) 2023.06.26
백준 1152  (0) 2023.06.24
백준 10814  (0) 2023.06.23
백준 1018 체스판  (0) 2023.06.22