📅  最后修改于: 2022-03-11 14:45:13.419000             🧑  作者: Mango
#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:
----------------------------------------------------------