Facebook
From svkm, 4 Months ago, written in Python.
Embed
Download Paste or View Raw
Hits: 213
  1. n=input("Enter your name : ")
  2. print("Hello",n)
  3. print("How are you",n,"?")
  4. print("I hope life is treating",n,"well!")
  5.  
  6.  
  7. mrp=int(input("Enter the mrp : "))
  8. dis=float(input("Enter the discount"))
  9. price=mrp-mrp*dis/100
  10. print("Final price is ",int(price))
  11.  
  12.