class One1
{
public static void main(String args[])
{
try
{
Thread.sleep(8000);
}
catch(InterruptedException e)
{
System.out.println(e);
}
System.out.println("Om Namoh Narayanah");
}
}