fork download
  1. # # 0KLQtdGB0YLQvtCy0LjRhw==
  2. input = "add 3, 6\n print 77\n sub 88, 33"
  3. print(input)
  4. def interpret(command):
  5.  
  6. print(command)
Success #stdin #stdout 0.11s 14080KB
stdin
Standard input is empty
stdout
add 3, 6
 print 77
 sub 88, 33