Cod sursa(job #601876)
Utilizator | Data | 8 iulie 2011 02:45:31 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream.h>
void main(){
long int a,b;
ifstream in("adunare.in");
ofstream out("adunare.out");
in>>a;
in>>b;
out<<(a+b);
in.close();
out.close();}