Advertisement
simeonshopov

Rectangle area

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