Computer Science, asked by manandhall480, 8 months ago

Write python program to input height in feet and convert into Inches.

Answers

Answered by pavithranatarajan855
1

Answer:

feet=int(input())

inches=feet*12

print(inches)

Explanation:

Similar questions