#include <iostream>
using namespace std;

int main() {
    int n;
    while(cin>>n){
        bool flag=false;
        int x,y,z;
        cin>>x>>y>>z;
        int price=0;
        for(int i=9;i>0;i--){
            price=i*10000+x*1000+y*100+z*10;
            for(int j=9;j>=0;j--){
                price+=j;
                for(int single=price;single>0;single--){
                    if(n*single==price){
                        cout<<i<<" "<<j<<" "<<single<<endl;
                        flag=true;
                        break;
                    }
                }
                if(flag) break;
                else price-=j;
            }
            if(flag) break;
        }
        if(!flag) cout<<0<<endl;
    }
    return 0;
}