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