using System; using System.Collections.Generic; class Progaram { static void Main() { int total = 0; int kazu = int.Parse(Console.ReadLine()); string[] values = Console.ReadLine().Split(' '); List list = new List(); for(int i = 0;i= x){ x += i; } else{ y += i; } } if(x == y){ Console.WriteLine("possible"); } else{ Console.WriteLine("impossible"); } } }