import java.util.Scanner; //beginner public class Addition { public static void main(String[] args) { Scanner scan = new Scanner(System.in); //todo: Read integer values as input and add them until the user writes a 's'. //Print the result. } }