zone du parallélogramme

#program for finding area of parallelogram
height = int(input("Enter the height of the parallelogram"))
base=int(input("Enter the base of the parallelogram"))
Area = height*base
print("Area is: ", (Area))
.........................................................
#output:
Enter the height of the parallelogram
Enter the base of the parallelogram
Area is:  
----------------------------------------------------------
Gr@Y_orphan_ViLL@in##