как
package com.javarush.task.task01.task0107;
/*
Комментарии излишни
*/
public class Solution {
public static void main(String[] args) {
int x = 2;
int y = 12;
x = x * 3 * 2;
y = y - 3 * 2 - 2 - 2;
//x = y - x;
//y = y - x;
System.out.println(x);
System.out.println(y);
}
}