Cod sursa(job #386583)
Utilizator | Data | 25 ianuarie 2010 12:10:45 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | foxoi | Marime | 0.16 kb |
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int main(){
long long a,b;
f>>a>>b;
g<<a+b;
g.close();
return 0;
}