Write a program that receives three integers as input and prints them in the following order: the maximum, the minimum, and then the remaining number, all in one line. Note that there can be duplicate numbers in the input.
Maximum and minimum
Report a typo
Sample Input 1:
58 9 48Sample Output 1:
58 9 48Write a program in Python 3
# the following code creates a list from input, please do not modify it
ints = [int(num) for num in input().split()]
# your solution here
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.