Advertisement
Spocoman

06. Calculate Rectangle Area

Jan 25th, 2022
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. width = int(input())
  2. height = int(input())
  3.  
  4. def area():
  5.     return width * height
  6.  
  7. print(area())
  8.  
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement