using System;
public class HelloWorld
{
public static void Main(string[] args)
int a,b,c,x;
x = Convert.ToInt32(Console.ReadLine());
a = x / 100;
b = (x % 100)/10;
c = (x % 100) % 10;
if ((a % 2 != 0) && (b % 2 != 0) && (c % 2 != 0))
Console.WriteLine("Тебе уготована дорога прямо в рай!");
}
else
Console.WriteLine("Видимо, между нами нет гравитации...");