# NguyenU import math def find_max(nums): max = 0 for x in nums: if x > max: max = x print max