Cod sursa(job #693372)

Utilizator abel001Pauliuc Abel abel001 Data 27 februarie 2012 12:00:15
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include<fstream>
using namespace std;
int main()
{
	ifstream in("adunare.in");
	ofstream out("adunare.out");
	int a,b;
	long long int s;
	in>>a>>b;
	s=a+b;
	out<<s;
	
	in.close();
	out.close();
	return 0;
}