str_length = input('Please type length : \n')
str_width = input('Please type width : \n')
# سماها price 
str_meter = input('how much for 1 meter? : \n ')

#convert Type

length = float(str_length)
width = float(str_width)
#المفروض احط الميتر هون

area = length * width
#المفروض احط قانون الموني هون (total_price) سماه

str_area = str(area)
#المفروض احط استر موني هون

print('The total area is:' + str_area)
meter = float(str_meter)
mony = area * meter 
str_mony = str(mony)
print('Give the guy :$' + str_mony)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: