#include <iostream> using namespace std; int main() { int h, r; cin >> h >> r; int result = 20 / (3 * r * h); int yushu = 20 % (3 * r * h); if (yushu != 0) { cout << (result + 1) << endl; } else { cout << result << endl; } return 0; }