Help me in solving SYNJ4V2 problem

My issue

Output of 3+4
Output of 2+1

My code

class additionprogram
{
	public static void main (String[] args)
	{
	    int result1=3+4;
	    System.out.println(result1);
	    int result2=2+1;
	    System.out.println(result2);
		// update your code here
		
	}
}

Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone