#include <iostream>
#include <cmath>
using namespace std;

int main() 
{
	float x;
	cout << "x = ";
	cin >> x;
	if (x >= 0) {	
		float w = sqrt(x);
		cout << "Wurzel ist " << w << endl;
	}
	else 
		cout << "Wurzelberechnung nicht m�glich! " << endl;
	
	return 0;
}