public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter the first: ");
int first = input.nextInt();
System.out.print("Enter the second: ");
int second = input.nextInt();
System.out.print("Enter your name: ");
String name = input.next();
int difference = first - second;
System.out.println(name + ", the difference is " + difference);
input.close();
}