<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import javakurs.io.*;
public class mysecond 
{
	public static void main( String[] args ) 
	{
	      int zahl1=0;
	      int zahl2=0;
	      int summe=0;
	      Eingabe.read("Geben Sie die erste Zahl ein:");
	      zahl1=Eingabe.getInt(0);
	      Eingabe.read("Geben Sie die zweite Zahl ein:");
	      zahl2=Eingabe.getInt(0);
	      summe=zahl1+zahl2;
	      Ausgabe.println(summe);
	}
}
</pre></body></html>