Cod sursa(job #2747499)

Utilizator Razvan20Opris Razvan Razvan20 Data 29 aprilie 2021 11:55:18
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.26 kb
#include <iostream>
#include <fstream>
#include <stdio.h>

using namespace std;

int main()
{
    freopen ("adunare.in", "r", stdin);
    freopen ("adunare.out", "w",stdout);

    int a ,b ;
    cin >> a >> b;
    cout << a + b;

    return 0;
}