fork download
  1. def find(*args):
  2. for arg in args:
  3. if int(arg)%2 == 0:
  4. print (arg)
  5.  
  6. find(1, 3, 6) #wypisze 6
Success #stdin #stdout 0.02s 9984KB
stdin
Standard input is empty
stdout
6