using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace y1131 { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); string[] str = Console.ReadLine().Split(' '); int ans = 0; for(int i = 0; i < n; i++) { int numnum = int.Parse(str[i]); ans += numnum; } int avg = ans / n; int result = 0; for (int i = 0; i < n; i++) { result = 50 - ((avg - int.Parse(str[i])) / 2); Console.WriteLine(result); } } } }