This tasks keeps showing me this message: EditorConfigTokenType.SEPARATOR expected, got '.' on lines 33 and 35, is it an issue with Intelijj Idea?
package com.codegym.task.task07.task0706;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/*
Streets and houses
*/
public class Solution {
public static void main(String[] args) throws Exception {
//write your code here
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int oddSum = 0;
int evenSum = 0;
int arr[] = new int[15];
for (int i = 0; i < 15; i++) {
String address = reader.readLine();
arr[i] = Integer.parseInt(address);
if (arr[i] % 2 == 0) {
evenSum++;
} else if (arr[i] % 2 != 0) {
oddSum++;
}
}
if (oddSum > evenSum) {
System.out.println();
} else if (evenSum > oddSum) {
System.out.println();
}
}
}