using System;
using System.IO;
using System.Text;
namespace raptor_if
{
   public class main_class
   {
      static System.Random random_generator = new System.Random();
      public static void Main(string[] args)
      {
         string raptor_prompt_variable_zzyz;
         // ?? coin; 
         double coin;
         raptor_prompt_variable_zzyz = "Your number"; 
         Console.WriteLine(raptor_prompt_variable_zzyz);
         coin= Double.Parse(Console.ReadLine());
         if (coin>5)
         {
            Console.WriteLine("Number : "+coin);
         }
         else
         {
         }
      }
   }
}