Cod sursa(job #2586902)

Utilizator Anghel618Anghel Ionut Anghel618 Data 21 martie 2020 18:25:07
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.13 kb
#include <iostream>

using namespace std;

int main()
{
    int a = 3;
    int b= 5;
    cout << a+b;
    return 0;
}