206k views
5 votes
Write a program to input two integer values and find whether the 1st and the 2nd

number is greater?

User Ecotax
by
7.9k points

1 Answer

4 votes

Step-by-step explanation:

You can write a simple Python program to input two integer values and determine whether the first number is greater than the second number. Here's a Python program to do that:

# Input the first integer

num1 = int(input("Enter the first integer: "))

# Input the second integer

num2 = int(input("Enter the second integer: "))

# Check if the first number is greater than the second number

if num1 > num2:

print(f"{num1} is greater than {num2}.")

elif num1 < num2:

print(f"{num2} is greater than {num1}.")

else:

print("Both numbers are equal.")

In this program, we first input the two integers, num1 and num2, and then use conditional statements to check if num1 is greater than num2, if num2 is greater than num1, or if they are equal. The program will print the result accordingly.

User SerenityNow
by
7.7k points