/* Listing0203.java */

import java.util.Scanner;
import java.io.IOException;

public class Listing0203
{
  public static void main(String[] args)
  throws IOException
  {
    int a, b, c;
		
		Scanner scanner = new Scanner(System.in);
		
    System.out.println("Bitte a eingeben: ");
    a = scanner.nextInt();
    System.out.println("Bitte b eingeben: ");
    b = scanner.nextInt();
    c = a + b;
    System.out.println("a+b="+c);
  }
}