Cod sursa(job #91342)

Utilizator algoritmarOvidiu Andrei algoritmar Data 12 octombrie 2007 01:02:28
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <fstream>
using namespace std;

#define FIN "adunare.in"
#define FOUT "adunare.out"

int a,b;

int main()
{ 
   ifostream fin(FIN);
   ostream fout(FOUT);
   fin >> a >> b;  
   fout << a+b;
   return 0;
}