Guest User

Untitled

a guest
Nov 19th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #Area
  2. length = int(input('What is the length of your rectangle?:'))
  3. width = int(input('What is the width of your rectangle?:'))
  4. Area = (length * width)
  5. print('The area of your rectangle is ', Area)
Add Comment
Please, Sign In to add comment