#include using namespace std; int a, b, c; int main() { cin >> a >> b; c = a * 10 + b; cout << floor(c / 19) << endl; return 0; }