#include <iostream>
using namespace std;

int main() {
	
	float a;
	float b;
	float c;
	
	cout << "Geben Sie ihre Zahl ein:z.B.:";
	cin >> a;
	cout << a;
	
	cout << "\nGeben Sie ihre zweite Zahl ein:z.B.:";
	cin >> b;
	cout << b;
	
	a = b;
	c = a;
	
	cout << "\nZahl 1:";
	cout << b; 
	
	cout << "\nZahl 2:";
	cout << c; 
	
	return 0;
}