Cod sursa(job #1465986)
Utilizator | Data | 28 iulie 2015 13:30:16 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<iostream>
#include<fstream>
ifstream f("adunare.in");
ofstream out("adunare.out");
int a,b;
int main()
{
f>>a;
f>>b;
g<<a+b<<endl;
f.close();
g.close();
return 0;
}