Source code -
# A program made by Linux & Windows Tech
name = input("Enter your name:")
print("Hi,",name)
print("Welcome to a simple program to find the square made by Linux & Windows Tech")
num = float(input("Enter the number:"))
square = num * num
print("The square of the number is:",square)