├── 566 ├── 628 └── README.md /566: -------------------------------------------------------------------------------- 1 | T = int(input()) 2 | 3 | for i in range(T): 4 | N = int(input()) 5 | if N == 1 or N % 2 == 0: 6 | print("YES") 7 | else: 8 | print("NO") 9 | -------------------------------------------------------------------------------- /628: -------------------------------------------------------------------------------- 1 | X, Y = map(int, input().split()) 2 | Z= X - (Y // 2) 3 | print(Z) 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Codechef_ --------------------------------------------------------------------------------