print(max(1, 4, 100)) # Find the largest among 1, 4 and 100
print(max(-21, 4.5, 91.12)) # Find the largest among -21, 4.5 and 91.12
print(max(-67, -17, 0)) # Find the largest among -67, 417 and 0
print(min(0, -1.23e10, -9921)) # Find the smallest among 0, -1.23e10 and -9921
print(min(92, 6, -102)) # Find the largest among 92, 6, -102