Question #290201

For example, if the given numbers are 5, 3, 7, 2. As 7 is the greatest among the four numbers, so the output should be 7.


Expert's answer

nums = list(map(int, input().split()))
print(max(nums))
LATEST TUTORIALS
APPROVED BY CLIENTS