Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. print("this program work out area")
  2. input1=input("Length>")
  3. input2=input("depth>")
  4. input3=input("height>")
  5. number1=int(input1)
  6. number2=int(input2)
  7. number3=int(input3)
  8. result=number1*number2*number3
  9. output=str(result)
  10. print("the area of the cuboid is " + output)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement