Write a program to enter the weight of a person in kg and show the output weight in pounds
Answers
Answered by
0
weight = int(input("Enter weight: "))
print(f"{weight * 2.205} pounds")
Similar questions