Cod sursa(job #3168585)

Utilizator xorionSerban Paul xorion Data 12 noiembrie 2023 19:09:57
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include<bits/stdc++.h>
#define INF 0x3F3F3F3F
using namespace std;
ifstream fin("cmmdc.in");
ofstream fout("cmmdc.out");
int main()
{
      int a,b;
      fin>>a>>b;
      fout<<a+b;
      fout.flush();
}