Cod sursa(job #2636861)

Utilizator IceKingMTomsa Luca IceKingM Data 20 iulie 2020 14:38:59
Problema A+B Scor 0
Compilator c-64 Status done
Runda Arhiva de probleme Marime 0.55 kb
/******************************************************************************

                              Online C++ Compiler.
               Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.

*******************************************************************************/

#include <iostream>
#include <fstream>


using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int
main ()
{
  int a,b,s;
  fin>>a;
  fin>>b;
  s=a+b;
  fout<<s;
  return 0;
}