Cod sursa(job #111608)
Utilizator | Data | 1 decembrie 2007 13:51:57 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream.h>
int main(){
ifstream in("adunare.in");
ofstream out("adunare.out");
long long a,b;
in>>a>>b;
out<<a+b;
out<<"\n"
in.close();
out.close();
return 0;
}