Cod sursa(job #130856)
Utilizator | Data | 2 februarie 2008 11:48:33 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream.h>
int main(){
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long long x,y;
fin>>x>>y;
fout<<x+y;
fin.close();
fout.close();
return 0;
}