Question: python Write a program in Python using if statement to read two numbers (a, and b) then find out if the first number is greater
Write a program in Python using if statement to read two numbers (a, and b) then find out if the first number is greater than, less than or equal to the second number. As shown in the following run examples: Run Examples: When you have the program running correctly, verify that your program produces the same output as in the following test cases. --- Test case 1 --- Enter the first number: 2 Enter the second number: 5 The number 2 is less than 5 --- Test case 2 - Enter the first number: 100 Enter the second number: 90 The number 100 is greater than 90 --- Test case 3 - Enter the first number: 250 Enter the second number: 250 The number 250 is equal to 250
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
