Cod sursa(job #119819)

Utilizator xpawnripsterge contu asta xpawnrip Data 3 ianuarie 2008 13:52:27
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include<fstream.h>

int main()
{
   ifstream fin("adunare.in");
   ofstream fout("adunare.out");

   int a,b,c;
   fin>>a>>b;
   c=a+b;
   fout<<c;

   fin.close();
   fout.close();
   return 0;
}