fork download
  1. # your code goes here
  2. str_a = '50'
  3.  
  4. b = 10
  5.  
  6. c = int(str_a) + b
  7.  
  8. print ("The value of c = ",c)
  9.  
Success #stdin #stdout 0s 23352KB
stdin
Standard input is empty
stdout
('The value of c = ', 60)