Cod sursa(job #135492)

Utilizator blackwofl15paul calburean blackwofl15 Data 13 februarie 2008 20:55:36
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream.h>
int main()
{ifstream i("adunare.in");
 ofstream o("adunare.out");
 unsigned long a,b;
 i>>a>>b;
 o<<(a+b)<<"\n";
 i.close();
 o.close(); 
return 0;}