Cod sursa(job #91343)

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

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

int a,b;

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