fork download
  1. P = int(input("enter paise"))
  2. R = P//100
  3. Paise = P%100
  4. print(" Rupees-",R," Paise-",Paise)
Success #stdin #stdout 0.09s 14168KB
stdin
234

stdout
enter paise Rupees- 2   Paise- 34