Cod sursa(job #616455)

Utilizator shibby_chickAndreea Muscalagiu shibby_chick Data 12 octombrie 2011 17:52:01
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include<fstream>
using namespace std;
int a,b;
int main()
{
	ifstream f("adunare.in");
	f>>a>>b;
	ofstream g("adunare.out");
	g<<a+b;
	return 0;
}