Help me in solving CHRISTGREET problem

My issue

Error

My code

import java.util.*;
import java.lang.*;
import java.io.*;

class Codechef
{
	public static void main (String[] args) throws java.lang.Exception
	{
	    Scanner Sc = new Scanner (System.in);
	    int n = Sc.nextInt();
	    if(n==25){
	        System.out.println("Cristmas ");
	    }
	    else
	    System.out.println("Ordinory");
		// your code goes here

	}
}

Problem Link: Christmas Greetings Practice Coding Problem - CodeChef

@codr_sulekh123
u have to do it like this

import java.util.*;
import java.lang.*;
import java.io.*;

class Codechef
{
	public static void main (String[] args) throws java.lang.Exception
	{
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		if(n==25)
		    System.out.println("CHRISTMAS");
		else
		    System.out.println("ORDINARY");

	}
}