public class Main {
public static void main(String[] args) {
int x = 10;
int y = 2;
int sum = x - y;
System.out.println("x + y = " + sum);
}