Help me in solving JAVAOP02 problem

My issue

class Codechef
{
public static void main (String args)
{
int x = 11;

   // Update your code below this line
	x/=3;
	System.out.println(x);
}

}

My code

class Codechef
{
	public static void main (String[] args)
	{
	    int x  = 11;
	    
	   // Update your code below this line
		x/=3;
		System.out.println(x);
	}
}

Learning course: Object Oriented Programming using Java
Problem Link: https://www.codechef.com/learn/course/nmims-oops-java-2024/NMIMSOPLJ2/problems/JAVAOP02