Cod sursa(job #524113)

Utilizator micky000Antal Ioan micky000 Data 20 ianuarie 2011 08:39:25
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include<iostream.h>
#include<fstream.h>
int main()
{
	int a,b;
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f>>a>>b;
	g<<a+b;
	f.close();
	g.close();
	return 0;
}