Question 1

PHOTO EMBED

Sun Dec 18 2022 10:24:43 GMT+0000 (Coordinated Universal Time)

Saved by @qeebza

#Question 1

num1 = int(input("Enter 1st number: "))
num2 = int(input("Enter 2nd number: "))

if num1 > num2:
    print(num1, "is the largest.")
else:
    print(num2, "is the largest.")
content_copyCOPY