public class IFBeispiel { public static void main (String args[]) { System.out.print("Wähle Zahl 1: "); int zahl1 = Eingabe.leseInteger(); System.out.print("Wähle Zahl 2: "); int zahl2 = Eingabe.leseInteger(); if (zahl1 < zahl2) { System.out.println("Zahl 1 ist kleiner als Zahl 2"); } else { System.out.println("Zahl 1 ist groesser als Zahl 2") } System.out.println("Das wars"); } }