Cod sursa(job #694894)

Utilizator CosminLMKCossssssss CosminLMK Data 28 februarie 2012 08:50:41
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 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;
}