import java.util.*;
import java.lang.*;
import java.io.*;	// Stream Ein-/Ausgabe

public class Main
{
	public static void main (String[] args) 
	{
		int zahl1 = 4;
		int zahl2 = 8;
		int temp;
		
		System.out.print("\tProgramm SWAP in JAVA\n");
		
		temp = zahl1;
		
		zahl1 = zahl2;
	
		zahl2 = temp;
		
		System.out.print("\tWert für zahl1:");
		System.out.println(" " + zahl1 +"\n");
		
		System.out.print("\tWert für zahl2:");
		System.out.println(" " + zahl2 +"\n");
		
		
	}
}