Cod sursa(job #2504605)

Utilizator robertkoteczRobert Raul Andrei Kotecz robertkotecz Data 5 decembrie 2019 11:51:13
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.12 kb
#include <iostream>
using namespace std;
int main () {
int a , b;
a= 50;
b=25;
int sum = a+b;
cout<<sum;
return 0;
}