Cod sursa(job #605310)

Utilizator TuxymTux Ym Tuxym Data 27 iulie 2011 19:31:10
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream> 
#include <fstream.h>
int main(){ 
	int a,b,r;
	ifstream f("aplusb.in");
	ofstream o("aplusb.out");
	f >> a; f >> b; r=a+b;
	o << r;
	o.close();
	f.close();
	return 0;
}