fork download
  1. #assingment operators
  2. num=100
  3. num+=10
  4. num-=10
  5. num*=10
  6.  
  7. print ("num:",num)
  8.  
  9.  
Success #stdin #stdout 0.01s 7148KB
stdin
Standard input is empty
stdout
('num:', 1000)