def square_sum(one, two):
    one = one * one
    two = two * two
    total = one + two
    return total

def main(): text_one = input("Enter the first number: ") one = int(text_one) text_two = input("Enter the second number: ") two = int(text_two) total = square_sum(one, two) print("The sum of squares of {} and {} is {}".format(one, two, total))

main()