Cod sursa(job #2418594)

Utilizator theengineerBanica Alexandru-Claudiu theengineer Data 5 mai 2019 16:48:17
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 , b, rez;
cin>>a>>b;
rez=a+b;
cout<<rez;
return 0;
 }