#include<stdio.h>
#include<math.h>
int main()
{  float a=10.2,b=11.5;
   int x,y;
   x=ceil(a);
   y=floor(b);
   printf("x=%d\ny=%d\n",x,y);
}
