#include using namespace std; typedef long long ll; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int L; cin>>L; vector top(3), bot(3); for (int i=0; i<3; i++) cin>>top[i]>>bot[i]; for (int i=0; i<=L; i++) { int cur=0; for (int j=0; j<3; j++) { int q=top[j]/bot[j], r=top[j]%bot[j]; if(q==1&&r) cur++; top[j]=r*3; } if(cur>1) { cout<<0<<"\n"; return 0; } } cout<<1<<"\n"; return 0; }