#include <iostream>

using namespace std;

int main() {
  unsigned long n, k, x;
  cin >> n >> k >> x;
  cout << k / (n * n * 4);
  return 0;
}