Cod sursa(job #1546199)

Utilizator alexee100Alex Domnit alexee100 Data 7 decembrie 2015 20:10:33
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>
using namespace std;

int main() {
	int a,b;
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f>>a>>b;
    a<<a+b;
    f.close();
    g.close();
    
    return 0;
	
}