using System;
public class Program
{
public static void Main()
bool ok=true;
for(int i = 1; i<=3;i++)
int x=int.Parse(Console.ReadLine());
int y=int.Parse(Console.ReadLine());
if(y>x) ok=false;
else if(x%2==y%2) ok=false;
}
if (ok) Console.WriteLine("a special list");
else Console.WriteLine("not a special list");