Write a program to create a function called show_employee() . It should accept the employee’s name and salary as user input and display both. Use Ben 12000 as your test data
def show_employee(name, salary): return name, salary show_employee("Ben", 12000)