Cod sursa(job #3329752)

Utilizator BarbosuAlexBarbosu Ionel Alexandru BarbosuAlex Data 15 decembrie 2025 14:36:17
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Lista lui wefgef Marime 0.19 kb
#include <bits/stdc++.h>
using namespace std;

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

int main()
{
    int n, m;
    fin >> n >> m;
    fout << n + m;
    return 0;
}