fork download
  1. from typing import List
  2. def area_of_rectangle(width: int, height: int) -> int:
  3. # write your code here ^_^
  4. area=width*height
  5. return area
  6.  
  7. h=input()
  8. w=input()
  9. sph=h.split()
  10. spw=w.split()
  11.  
  12. print(area_of_rectangle(int(spw[2]),int(sph[2])))
  13.  
  14.  
  15.  
Success #stdin #stdout 0.03s 10064KB
stdin
width = 9
height = 8
stdout
72