문제

링크

풀이

#include <stdio.h>
 
int main(void) {
  int n;
 
  scanf("%d", &n);
  printf("%.2f", (float)n / 4);
  return 0;
}