import math num=[int(i) for i in input().split()] print(f'The maximum number is : {max(num)} \nThe minimum number is : {min(num)}')