class Idiom157
{	
	static final String planet = "Earth";
	
	public static void main (String[] args) throws java.lang.Exception
	{
		System.out.println("We live on planet " + planet);
	}
}