Company: Maq_27oct
Difficulty: medium
Mango Party Problem Description To mark her parents' 25th wedding anniversary, Meera decides to host a mango party for underprivileged children. She has N mangoes to distribute among a group of children under these rules: She may pick how many children receive mangoes. Every chosen child must get more than one mango. Every chosen child must get the same number of mangoes as every other chosen child. No single child may take all of the mangoes. Every one of the N mangoes must be handed out. Each child may only receive a whole number of mangoes. Help Meera by writing a program that decides whether the mangoes can be distributed this way without breaking any of the rules. Input format: First line: T (number of test cases) Next T lines: N Output format: For each test case, print Yes or No depending on the result. Examples Example 1: Input: N = 2 Output: No Explanation: 2 mangoes cannot be split across a group of any size while following the rules. With a group of size 1, one child would ta