#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int N, M, P, Q; cin >> N >> M >> P >> Q; int res = 0; for (int i = 0; i < N; i++) { for (int p = 1; p <= 12; p++) { if (p >= P && p <= P + Q - 1) { N -= 2 * M; } else { N -= M; } res++; if (N <= 0) { cout << res << '\n'; return 0; } } } return 0; }