Cod sursa(job #162290)

Utilizator jupanu92Anonim jupanu92 Data 19 martie 2008 20:52:32
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream>
using namespace std;

int main()
{ 
   ifstream fin("adunare.in");
   ofstream fout("adunare.out");
   long a,b;
   fin>>a>>b;
   fout<<a+b;
   
   return 0;
}