Cod sursa(job #2496371)

Utilizator ddan78David Anghel ddan78 Data 20 noiembrie 2019 19:25:10
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.16 kb

#include <fstream>
int main(){
  std::ifstream fin;
  std::ofstream fout;
  fin.open("adunare.in");
  fout.out("adunare.out");
  int a,b;
  fin>>a>>b;
  fout<<a+b;
}