Cod sursa(job #121109)

Utilizator lache92Hulub Ionut-Adrian lache92 Data 7 ianuarie 2008 20:34:58
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream.h>

int main()
{
      ifstream f("adunare.in");
      ofstream fout("adunare.out");
      int a, b, s;
      f>>a>>b;
      s = a + b;
      fout<<s;
      return 0;
}