Help me in solving JPRACREARR1 problem

My issue

import java.util.*;
class Codechef
{
public static void main (String args)
{
Scanner read = new Scanner(System.in);
int c = a + b;
int a = read.nextInt();
int b = read.nextInt();
System.out.print(c);
}
}
rearrange the following code

Learning course: Practice Java
Problem Link: Rearrange Code Practice Problem in Java - CodeChef

@klu2300090258
U have to do it like this

import java.util.*;
class Codechef
{
    public static void main (String[] args)
    {
        Scanner read = new Scanner(System.in);
        int a = read.nextInt();
	int b = read.nextInt();
	int c = a + b;
    	System.out.print(c);
    }
}