#ifndef IASASQUARE_H #define IASASQUARE_H #include int isasquare(int k){ int kr = sqrt(k); if((kr*kr)==k) return 1; return 0; } #endif