Cod sursa(job #120632)

Utilizator lache92Hulub Ionut-Adrian lache92 Data 6 ianuarie 2008 00:48:20
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;
}