Weight converter

 w=float(input("Enter Weight in KG:"))

o=w*35.274

p=w*2.2

g=w*1000

print("Weight in Kg {}".format(w))

print("Weight in Ounces {}".format(o))

print("Weight in Pounds {}".format(p))

print("Weight in G {}".format(g))