weight=int(input("Ceki gir : "))kg=weight*2.20lbs=weight/2.20type1=input("K for kG P for p ") if type1=="P" or type1=="p": print("Your weight is: ",lbs)elif type1=="K" or type1=="k": print("Your weight is: ",kg)else: print("Wrong")```I wrote like this and i think it is worked u can try and tell me if it is worked or not