Write a python program which compares two numbers A and B. Print ">" if A is greater than B
Print "<" if A is less than B
Print "=" if A and B are equal

, найдись солнце которое

ybrybrybrybrrby ybrybrybrybrrby    3   12.05.2021 11:30    0

Ответы
Ganshit Ganshit  11.06.2021 11:30

a = input("Enter the first number: ")

b = input("Enter the second number: ")

if a>b:

 print(">")

 

elif a<b:

   print("<")

else:

   print("=")

ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика