def max_of_numbers(*args): return max(args) print(max_of_numbers(1, 2)) # 2 print(max_of_numbers(3, 5, 1)) # 5 print(max_of_numbers(4, 9, 2, 8)) # 9