8 3 14 5
14
nums = [int(x) for x in input().split()] max_value = nums[0] for n in nums: if n > max_value: max_value = n print(max_value)