import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int num1 = scanner.nextInt();
//        int num2 = scanner.nextInt();
        int[] a = new int[num1];
        int count = 0,s1 = 0 , s2 = 0;
        for (int i = 0; i < num1; i++) {
            a[i] = scanner.nextInt();
        }

        for (int i = 0; i < num1; i+=2) {
            s1 = s1 + a[i];
        }
        System.out.println("KING" + " " + s1);
        for (int i = 1; i < num1; i+=2) {
            s2 = a[i] + s2;
        }
        System.out.println("WIN" + " " + s2);
        if(s1 >= s2) System.out.println("KING");
        else System.out.println("WIN");


    }

    public static boolean judge(int i,int j){
        int a,s = 0;
        while(i != 0){
            a = i % 10;
            s = s + a;
            i /= 10;
        }
        if(s == j)return true;
        else return false;
    }

    public static void paiXu(int[] a){
        int temp;
        for(int i = 0;i < a.length - 1;i++){
            for(int k = 0;k < a.length - i - 1;k++){
                if(a[k] > a[k + 1]){
                    temp = a[k];
                    a[k] = a[k + 1];
                    a[k + 1] = temp;
                }
            }
        }
    }
}

/**************************************************************
	Problem: 1738
	User: admin
	Language: Java
	Result: Accepted
	Time:1744 ms
	Memory:41000 kb
****************************************************************/