T = int(input()) for _ in range(T): N, M = map(int, input().split()) print((N*(N+1)//2)%M)