I am trying to run this function with the following user input structure but cannot get a correct answer:
def biggest_number(*args):
print (max(args))
return max(args)
a = (int(x) for x in input().split())
# 3,4,5
print (biggest_number(a))
So far I have tried different type of brackets "(" for tuples and "[" for lists as well as tried converting the strings to integers.