Advertisement
HristoBaychev

Rectangle Area

Jan 22nd, 2023
581
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. side_a = int(input())
  2. side_b = int(input())
  3.  
  4. area = side_a * side_b
  5.  
  6. print(area)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement