#include <stdio.h> #include <math.h> int main() { int m = 5; int k = (int)sqrt(m); printf( "%d,%f\n", k, sqrt(m) ); return 0; }