Addition Subtraction division and multiplication in java

import java.util.Scanner;
public class Test
{
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
int first, second;

System.out.println("First Number");
first = sc.nextInt();
System.out.println("Second Number");

second = sc.nextInt();

System.out.println("sum of first and second number is"+(first+second));
System.out.println("Substraction of First and Second is"+(first-second));
System.out.println("division of First and Second is"+(first/second));
System.out.println("Multiplication of First and Second is"+(first*second));
}
}