Cod sursa(job #455450)
Utilizator | Data | 13 mai 2010 20:12:51 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
int main(){
int a,b;
ifstream fin("adunare.in.txt");
ofstream fout("adunare.out.txt");
fin>>a>>b;
fout<<a+b;
fout.close();
return 0;}