Python Tricks- Input two numbers and get the total #shorts #python

preview_player
Показать описание
#shorts #python
Python code to Input two numbers and get the total

A=int(input('Enter the first number '))
B=int(input('Enter the second number '))
Tot=A+B
print('Total is ',Tot)
Рекомендации по теме
Комментарии
Автор

This is the code

A=int(input('Enter the first number '))
B=int(input('Enter the second number '))
Tot=A+B
print('Total is ', Tot)

scbitslchannel