#include <iostream>
using namespace std;

int main() {
    long a, b;
	cin >> a >> b;
	if (b != 0) cout << a/b;
	else cout << "ERROR";
	return 0;
}