def kilo_to_pounds(kilos):
return kilos * 2.204
#main part of the program starts here. Do not remove the line below
if__name__ == "__main__":
kilos = float(input())
pounds = kilo_to_pounds(kilos)
print(f"{pounds:.3f} lbs")
To embed this project on your website, copy the following code and paste it into your website's HTML: