fork download
  1. x = int('1')
  2. print('x = {}'.format(x))
  3. s = str(42)
  4. print('s = {}'.format(s))
  5.  
Success #stdin #stdout 0.02s 9172KB
stdin
Standard input is empty
stdout
x = 1
s = 42