Cod sursa(job #805431)

Utilizator tudy1998tudor frent tudy1998 Data 31 octombrie 2012 14:43:02
Problema A+B Scor 0
Compilator cpp Status done
Runda Lista lui wefgef Marime 0.13 kb
#include<iostream>
using namespace std;

int main()
{
	int a, b;

	cin >> a;
	cin >> b;

	cout << a+b;

	

	return 0;
}