Не понимаю, почему не выводит сумму чисел
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);
boolean notEnter = false;
int a = console.nextInt();
int b = console.nextInt();
int sum = (a+b);
while (!notEnter){
String s = console.nextLine();
notEnter = s.equals("ENTER");
System.out.println(sum);
}
}//напишите тут ваш код
}