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