Отсутствует точка с запятой.
файл com/javarush/task/pro/task03/task0308/Solution.java, строка 14, позиция 321
package com.javarush.task.pro.task03.task0308;
import java.util.Scanner;
/*
Координатные четверти
*/
public class Solution {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int x = scanner.nextInt();
int y = scanner.nextInt();
boolean less x = (x < 0);
boolean more x = (x > 0);
boolean less y = (y < 0);
boolean more y = (y > 0);
if (more x && less y){
System.out.println(1);
} else if (less x && more y){
System.out.println(2);
}
else if (less x && less y){
System.out.println(3);
}
else if (more x && less y){
System.out.println(4);
}
}
}
}