write a program to calculate the area of a rectangle

 write a program to calculate the area of a rectangle.


    a=int(input())

    b=int(input())

    print(a*b)

Comments