fork download
  1. #Enter Python code here and hit thRu
  2. PP = 10
  3. BB = 20
  4. praint("PP+BB=",PP+BB)
  5. print("PP-BB=", PP-BB)
  6. print("PP*BB=", PP*BB)
  7. print("PP/BB=", PP/BB)
  8. print("PP//BB=", PP//BB)
  9. print("PP%BB=", PP%BB)
  10. print("PP**BB=", PP**BB)
Success #stdin #stdout 0.03s 25228KB
stdin
Standard input is empty
stdout
#Enter Python code here and hit thRu
PP = 10
BB = 20
praint("PP+BB=",PP+BB)
print("PP-BB=", PP-BB)    
print("PP*BB=", PP*BB)    
print("PP/BB=", PP/BB)    
print("PP//BB=", PP//BB)  
print("PP%BB=", PP%BB)   
print("PP**BB=", PP**BB)