Cod sursa(job #2575792)

Utilizator Alexa2001Alexa Tudose Alexa2001 Data 6 martie 2020 15:27:44
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <bits/stdc++.h>

using namespace std;

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

    int a, b;
    scanf("%d%d", &a, &b);
    printf("%d\n", a+b);

    return 0;
}