Computer Science, asked by komalmasson3, 5 hours ago

Write a python program to accept a price of an item and number of units. Finally display the amount of playable

Answers

Answered by lavanya3602
2

price = int(input())

units = int(input())

price *=units

print("price of the items is ",price)

Similar questions