Cod sursa(job #1008607)

Utilizator andreyo2011Andrei Youseff andreyo2011 Data 11 octombrie 2013 13:41:29
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>

using namespace std;

ifstream in("adunare.in");
ofstream out("adunare.out");

int main() 
{
	int a,b,S;
	in>>a>>b;
	S=a+b;
	out<<S;
	return 0;
}