fork download
  1. for i in range(6,100):
  2. s = (i + 1) // 7
  3. n = 36
  4. while s < 2050:
  5. s = s * 2
  6. n = n + 3
  7. if n == 66:
  8. print(i)
  9.  
Success #stdin #stdout 0.03s 8948KB
stdin
Standard input is empty
stdout
20
21
22
23
24
25
26
27
28
29
30
31
32
33