using System; using System.Collections.Generic; class Program { static void Main(string[] args) { string str = Console.ReadLine(); int N = int.Parse(str); string s = "Petr"; if(N==1){ s = "square1001"; } Console.WriteLine(s); } }