package oj.test;
import java.util.Scanner;
public class Demo19 {
public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num =sc.nextInt(); sc.close(); for(int x=0;x<=20;x++){ for(int y=0;y<=33;y++){ int z = 100-x-y; if( 5*x+3*y+z/3 == 100 && z%3==0){ System.out.println(x+" "+y+" "+z); } } } } }