#this program will use functions from nameInput.py #and from fullName.py and ask user to enter 2 names #and prints the full name import nameInput import fullName def main(): print("enter your first name ") first=nameInput.get_name() print("enter your last name ") last=nameInput.get_name() fullNameResult = fullName.full(first, last) print("full name is ") print(fullNameResult) main()