Cod sursa(job #2202)

Utilizator mithyPopovici Adrian mithy Data 16 decembrie 2006 13:26:25
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream.h>

long a,b;

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