Cod sursa(job #2811624)

Utilizator alinpop075@gmail.comAlin Pop [email protected] Data 2 decembrie 2021 18:47:21
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <fstream>
using namespace std;

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

int sum(int a,int b)
{
  return a + b;
}

int main()
{
  int a,b;
  fin >> a >> b;
  fout << sum(a,b);
}