Odpowiedź:
Domyślnie dane wprowadzane za pomocą input() są wprowadzane jako stringi. Jako, że chcesz je dodawać, to musisz mieć inty. Aby tak się stało musisz przecastować input komendą int(input())
Wyjaśnienie:
a = int(input("a = "))
b = int(input("b = "))
suma = a + b
print("a + b =", suma)
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
Domyślnie dane wprowadzane za pomocą input() są wprowadzane jako stringi. Jako, że chcesz je dodawać, to musisz mieć inty. Aby tak się stało musisz przecastować input komendą int(input())
Wyjaśnienie:
a = int(input("a = "))
b = int(input("b = "))
suma = a + b
print("a + b =", suma)