Source Code
#include <stdio.h>

int main(void) {
 int h,t;
  scanf("%d%d",&h,&t);
  for(int i = 1; i<=100; i++){
    if(i*t > h){
      printf("%d",i-1);
      return 0;
    }
  }
}
Copy
The Tortoise and the Hare Ayoooy
GNU GCC C11
2 ms
832 KB
Wrong Answer