Source code -
name = input("Enter your name:")
print("Hi,", name)
num1 = float(input("Enter the first number:"))
num2 = float(input("Enter the second number:"))
difference = num1 - num2
print("The difference is:", difference)
print("Thank you for using a simple program made by Linux & Windows Tech")