import java.util.Scanner;

public class DontNeedMultipleScanners {
  public static void main(String []args) {
    Scanner inFromKBD = new Scanner(System.in);

    System.out.print("How much snow last Sunday? ");
    double lastWeekend = inFromKBD.nextInt();


    /* not necessary. We don't need to create
     * a new Scanner every time we read from
     * the keyboard */
    // inFromKBD = new Scanner(System.in);
    System.out.print("How much snow this weekend? ");
    double thisWeekend = inFromKBD.nextInt();

    System.out.println("Where are we supposed to shovel " +
                       (lastWeekend + thisWeekend) +
                       " inches?");
  }
}
