“Добавление в Python” Ответ

Сумма 2 чисел в Python

a = int(input("Enter first number:"))
b = int(input("Enter second number:"))
sum = a+b
print(sum)
Easy Earthworm

Pythn Program за добавление пользователей не выпущено

# Store input numbers
num1 = input('Enter first number: ')
num2 = input('Enter second number: ')

# Add two numbers
sum = float(num1) + float(num2)

# Display the sum
print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))
Expensive Eland

Как добавить в Python

a = int(input())
b = int(input())
s = a+b
print(S)
Prickly Penguin

Добавление в Python

#to add 2 digits
print("enter 2 numbers")
a =int(input("enter 1 st number"))
b =int(input("enter 2nd number"))
c = a+b
print ("here is your answer",c)
Jolly Jay

Ответы похожие на “Добавление в Python”

Вопросы похожие на “Добавление в Python”

Больше похожих ответов на “Добавление в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования