Cod sursa(job #741587)

Utilizator boby301Bogdan Bacila boby301 Data 26 aprilie 2012 15:29:48
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include <fstream>
using namespace std;

int a,b;

ifstream f("adunare.in");
ofstream g("adunare.out");

int main(){
	f>>a;
	f>>b;
	g<<a+b;
}