N=int(input()) for _ in range(N): p=int(input()) if p!=2: print((p-1)**2) else: print(2)