Cod sursa(job #405264)
Utilizator | Data | 27 februarie 2010 20:24:35 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream.h>
long long a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main(){
f>>a>>b;
g<<a+b<<'\n';
return 0;
}