p = int(input()) for _ in range(1, p + 1): k, n = map(int, input().split()) print(f"{k} {( n * (n + 1) ) // 2 + n}")