Stepping Stones Game

  • + 3 comments
    • T = int(input())

    • for t in range(T):

      • N = int(input())
      • x = (-1+(1+8*N)**0.5)/2
      • if x == int(x):
        • print('Go On Bob ' + str(int(x)))
      • else:
        • print('Better Luck Next Time')