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