#include <stdio.h> #include<math.h> int main(void) { float a,b; scanf("%f", &a); b = sqrt(a); printf("%f", b); return 0; }