что я делаю не так? Подскажите пожалуйста
package com.javarush.task.pro.task04.task0403;
import java.util.Scanner;
/*
Суммирование
*/
public class Solution {
public static void main(String[] args) {
Scanner console = new Scanner(System.in);
int s1 = console.nextInt();
int s2 = console.nextInt();
int s3 = console.nextInt();
int s4 = console.nextInt();
int s5 = s1 + s2 + s3 + s4;
boolean f2 = false;
while(!f2){
System.out.println(s5);
String f1 = console.nextLine();
f2 = f1.equals("ENTER");
}
}
}