/
rnekrasov
/
Python
Обзор
Документация
Войти
/
rnekrasov
/
Python
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
greattwono
7 строк
239 B
sohongjaduuniv
Create greattwono
02 окт 2020, 19:19
Не верифицирован
02 окт 2020, 19:19
bd94477
Код
Авторство
О чём код?
# Python Program to find the largest of two numbers using an arithmetic operator a = int(input("Enter the first number: ")) b = int(input("Enter the second number: ")) if(a - b > 0): print(a, "is greater") else: print(b, "is greater")