Cod sursa(job #2191017)

Utilizator PetrescuAlexandru Petrescu Petrescu Data 1 aprilie 2018 12:55:33
Problema A+B Scor 100
Compilator cpp Status done
Runda teme_upb Marime 0.23 kb
#include <fstream>

using namespace std;
int main()
{
  int A, B, C;

  ifstream fin("adunare.in");
  ofstream fout("adunare.out");
  fin >> A >> B;
  C = A + B;
  fout << C;
  fin.close();
  fout.close();
  return 0;
}