# create a python function that return maximum number of the following numbers:

# 2000,10000,500000,1000000,20000000

nums = [2000,10000,500000,1000000,20000000]

def max_nums(max_):

    max_ = max(max_)

    return max_

     

max_nums(nums)