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

public class Main
{
	public static void main (String[] args) 
	{
		int zahl1 = 1;
		int zahl2 = 3;
		int temp = 0;
		System.out.print("Vertauschen zweier Zahlen:\n");
		System.out.print("Z1:" + zahl1 + " | Z2:" + zahl2 + " | T:" + temp + "\n" );
		
		temp = zahl1;
		
		System.out.print("Z1:" + zahl1 + " | Z2:" + zahl2 + " | T:" + temp + "\n" );
		
		zahl1 = zahl2;
		
		System.out.print("Z1:" + zahl1 + " | Z2:" + zahl2 + " | T:" + temp + "\n" );
		
		zahl2 = temp;
		
		System.out.print("Z1:" + zahl1 + " | Z2:" + zahl2 + " | T:" + temp + "\n" );
		
	
		
	}
}