Question: Given two integer values as input, write a Python program to determine the maximum of these values. Your program must use the following output messages:

Given two integer values as input, write a Python program to determine the maximum of these values. Your program must use the following output messages: o For values that are equal: The values are equal. o For values that are different: Value 1 is the maximum value. Examples: Given the values 10 and 10, the expected output is: Enter the first value: 10 Enter the second value: 10 The values are equal Given the values 10 and 20, the expected output is: 20 is the maximum value. You must use conditionals (if statement) when writing your solution. For example: Input Result 10 10 Enter the first value: 10 Enter the second value: 10 The values are equal Answer: (penalty regime: 0%) Reset answer 1 2 # write your solution here
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
