Cod sursa(job #127632)

Utilizator ThomasFMI Suditu Thomas Thomas Data 24 ianuarie 2008 18:56:24
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include<fstream.h>
int main()
{             
  ifstream f("adunare.in");
  ofstream g("adunare.out");
  int a,b;
  f>>a>>b;
  g<<a+b;
  return 0;
}