#include <stdio.h>
​
int main() {
  float x = 5;
  x /= 3;
  printf("%f", x);
  return 0;
}