Thursday, November 16, 2017

COJ - A+B Problem Solution

http://coj.uci.cu/24h/problem.xhtml?pid=1000

#include<iostream>
#include<cstdio>

using namespace std;

int main()

{

int a,b;

cin>>a>>b;

cout<<a+b<<endl;

return 0;

}

No comments:

Post a Comment