#include <stdio.h>#include<math.h>int main(){ double a,b,Ceil; scanf("%lf %lf",&a,&b); printf("%0.0lf\n",ceil(a/b)); return 0;}
No comments