static int sqr(int i) { ret i*i; } static long sqr(long l) { ret l*l; } static double sqr(double d) { ret d*d; } static float sqr(float f) { ret f*f; }