Cod sursa(job #2853355)

Utilizator tothalexandraToth Alexandra tothalexandra Data 20 februarie 2022 10:52:14
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda teme_upb Marime 0.18 kb
#include <bits/stdc++.h>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
    int a,b;
    in>>a>>b;
    out<<a+b;
    return 0;
}