Cod sursa(job #2409591)

Utilizator Doom6420Man jon Doom6420 Data 19 aprilie 2019 11:36:37
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <fstream>
#include <iostream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main(int argc, char *argv[]) {
  int a, b;
  fin >> a >> b;
  fout << a + b;
  fin.close();
  fout.close();
  return 0;
}