Проблем с задача номер 5 (Rectangle Area)
Имам проблем с judge системата.Пиша кода, както се показва в лекцията, но ми излиза compiled time error.
Ето и кода:
public class RectangleArea {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int a = Integer.parseInt(scanner.nextLine());
int b = Integer.parseInt(scanner.nextLine());
System.out.println(a * b);
}
}