#include <iostream>
using namespace std;

int main()
{
int werte[10], i;

for(i = 0; i < 10; i++)
{
	cout << "Geben Sie eine Zahl ein: " << endl;
	cin >> werte[i];
}
for(i = 0; i < 10; i++)
{
	cout << werte[i] << endl;
}

return 0;
}