Cod sursa(job #3236814)

Utilizator LiviuM_Popescu Ion LiviuM_ Data 1 iulie 2024 21:31:02
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <bits/stdc++.h>

using namespace std;

int a,b;

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

int main()
{
    in >> a >> b;

    out << a + b;

    return 0;
}