Cod sursa(job #241170)

Utilizator philipPhilip philip Data 9 ianuarie 2009 15:46:00
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
 #include <fstream.h>  
 long a,b;  
 ifstream fin("adunare.in");  
 ofstream fout("adunare.out");  
 int main()  
 {  
     fin >> a;  
     fin >> b;  
     fout << a+b;  
     return 0;  
 }