Cod sursa(job #1451562)

Utilizator astronoviceAlexandru Pana astronovice Data 17 iunie 2015 17:31:59
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>
using namespace std;

int main() {
  ifstream fin("adunare.in");
  ofstream fout("adunare.out");

  long a, b;
  fin >> a >> b;
  fout << a + b;

  fout.close();
  fin.close();
}