👤

specyfikacja zadania
ćw 1
Oblicz sume dwóch dowolnych liczb naturalnych ​


Odpowiedź :

Odpowiedź:

Python:

first = 5

second = 10

print(first + second)

C++:

#include <iostream>

int main() {

   constexpr short first{5};

   constexpr short second{10};

   std::cout << first + second << std::endl;

   return 0;

}