Cod sursa(job #2980549)

Utilizator skyredLupascu Alexandru Daniel skyred Data 16 februarie 2023 17:04:57
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <bits/stdc++.h>

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

int main()
{
        int a,b;
        fin>>a>>b;
        long long c;

        c=a+b;
        fout<<c;

    return 0;
}