Company: Wise@TI_2may
Difficulty: medium
Write a program that accepts an array of N positive integers. Check whether the average of the number can be expressed as an integer. if not, print how much minimum value should be subtracted from the sum to make the average an integer. If the average is already in the form of an integer, print "Yes" otherwise print "No" with the minimum number that should be subtracted from the sum. Read the Input from STDIN (standard input) and Print to STDOUT (standard output) with a trailing newline. You should not write arbitrary strings while reading the input and while printing as these contribute to the standard output. Constraints: 2 ≤ N ≤ 1000 2 ≤ Array elements ≤ 10 5 Input Format: The first line of input contains an integer N, the number of elements. The second line of input contains N number of array elements, each separated by a single white space. Output Format: A single line of output containing a string or a combination of both String and integer. Example: 1) Yes ('Yes' bec