Cod sursa(job #1465987)

Utilizator JohnnyCodeSava Ioan JohnnyCode Data 28 iulie 2015 13:32:00
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<iostream>
#include<fstream>

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

 f.close();
 g.close();

 return 0;
}