fork download
  1. # your code goes here
  2. def example(args):
  3. for i in args:
  4. print(i);
  5. example([1,55,73]);
Success #stdin #stdout 0.02s 9112KB
stdin
Standard input is empty
stdout
1
55
73