← Back to List

10951번: A+B - 4 ↗

Solutions

C++14
124 B | 124 chars
#include <cstdio>
using namespace std;
int a,b;
int main()
{
	while(scanf("%d %d",&a,&b)!=EOF)
	{
		printf("%d\n",a+b);
	}
}