using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Passed { class Program { static void Main(string[] args) { double num = double.Parse(Console.ReadLine()); if (num >=3) { Console.WriteLine("Passed!"); } else { } } } }