Cod sursa(job #695007)

Utilizator CosminLMKCossssssss CosminLMK Data 28 februarie 2012 09:53:46
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<iostream>
#include<fstream>
using namespace std;
ifstream f("suma.in");
	ofstream g("suma.out");
	int a,b;
	int main()
	{f>>a;f>>b;
	g<<a+b;
	f.close();
	g.close();
	return 0;
	}