Cod sursa(job #837816)

Utilizator BomeyakSimon Norbert Bomeyak Data 18 decembrie 2012 18:33:05
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include<fstream>
using namespace std;
fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);
int a,b;
int main()
{
f>>a>>b;
g<<a+b;
}