#include #include int main() { double x; printf("Input an int: "); scanf("%lf", &x); printf("%f <= INT_MAX? %s\n", x, x <= INT_MAX ? "yes" : "no"); }