#include <bits/stdc++.h>

using namespace std;

int main(){
	int n;
	while (cin >> n){
		for (int x=0; x<=100; x++){
			for (int y=0; y<=100; y++){
				for (int z=0; z<=100; z++){
					if (5*x*3 + 3*y*3 + z <= 3*n && x + y + z == 100){
						printf("x=%d,y=%d,z=%d\n", x, y, z);
					}
				}
			}
		}
	}
	return 0;
}