fork download
  1. f=lambda n,c=1:`c`+(' ? '+f(n,c+1)if c<n else~-n*' : 0')
  2.  
  3. print f(input())
Success #stdin #stdout 0.01s 7740KB
stdin
10
stdout
1 ? 2 ? 3 ? 4 ? 5 ? 6 ? 7 ? 8 ? 9 ? 10 : 0 : 0 : 0 : 0 : 0 : 0 : 0 : 0 : 0