# Method that takes 3 arguments and returns sum of it def add_numbers(a, b, c): return a+b+c # call the method by passing only positional arguments result = add_numbers(10, 20, 30) # print the output print("Addition of numbers is", result)