暴力即可
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _869A
{
class Program
{
static void Main(string[] args)
{
int n = int.Parse(Console.ReadLine());
int[] x = Console.ReadLine().Split().Select(i => int.Parse(i)).ToArray();
int[] y = Console.ReadLine().Split().Select(i => int.Parse(i)).ToArray();
ISet<int> xset = new HashSet<int>(x);
ISet<int> yset = new HashSet<int>(y);
int sum = 0;
foreach (var xe in xset)
{
foreach (var ye in yset)
{
int r = xe ^ ye;
if (xset.Contains(r) || yset.Contains(r))
{
sum++;
}
}
}
if (sum % 2 == 0)
{
Console.WriteLine("Karen");
}
else
{
Console.WriteLine("Koyomi");
}
}
}
}