Cod sursa(job #1112433)
Utilizator | Data | 19 februarie 2014 19:29:47 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<iostream.h>
#include<fstream.h>
int main()
{ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 1;}