Cod sursa(job #730163)

Utilizator MichelJumatate Teodor-Mihail Michel Data 5 aprilie 2012 16:23:50
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream>
using namespace std;
int a,b;
int main ()
{
	ifstream f("suma.in");
	f>>a>>b;
	f.close();
	ofstream s("suma.out");
	s<<a+b;
	s.close();
	return 0;
	
}