Cod sursa(job #365722)
Utilizator | Data | 19 noiembrie 2009 19:33:58 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int main(){
long long a,b;
f>>a>>b;
g<<b+a;
g.close();
return 0;
}