#include<bits/stdc++.h>
using namespace std ;
int main() {
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0) ;
int n, m, x, y, ans = -1 ; // ans 是最後找出的豬肉串數
cin >> n >> m >> x >> y ;
for (int i=0;i<=m;i++) {
if (x*i+y*(m-i) == n) // 店家收的錢正確
ans = i ; // 紀錄有幾串豬肉
}
if (ans == -1) // 收錯錢
cout << "-1 -1" ;
else // 輸出正確的串數
cout << ans << ' ' << m-ans ;
return 0 ;
}