Cod sursa(job #1495229)

Utilizator david12345Rotari David david12345 Data 2 octombrie 2015 19:12:52
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<fstream>
using namespace std;
int main(){
	int a,b;
	ifstream fi("adunare.in");
	ofstream fo("adunare.out");
	fi>>a>>b;
	fo<<a+b;
	fi.close();
	fo.close();
	return 0;




}