Cod sursa(job #616453)

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