Cod sursa(job #351834)

Utilizator ioana495Ioana Constantin ioana495 Data 29 septembrie 2009 16:55:12
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream.h>

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

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