n=input("Enter your name : ") print("Hello",n) print("How are you",n,"?") print("I hope life is treating",n,"well!") mrp=int(input("Enter the mrp : ")) dis=float(input("Enter the discount")) price=mrp-mrp*dis/100 print("Final price is ",int(price))