#include<iostream> #include<cmath> using namespace std; struct Complex{ float x,y; }; int main() { Complex c; cin >> c.x >> c.y; cout << sqrt ( c.x*c.x + c.y*c.y ); system("pause"); return 0; }