Maximum and minimum

Report a typo

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.

Sample Input 1:

58 9 48

Sample Output 1:

58 9 48
Write 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
___

Create a free account to access the full topic