import java.util.*;

class Solver {

    int[][] board;
    int col;
    int row;

    Solver(int col, int row, int size) {
	board = new int[size][size];
	this.col = col;
	this.row = row;
    }

    void solve() {	
	// search for a solution and print it or print -1 if no solution
    }    
}

class Phares {
    
    public static void main(String[] args) {
	Locale.setDefault(Locale.ENGLISH);
	
	Scanner scan = new Scanner(System.in);
	
	int nbCases = scan.nextInt();
	int col = scan.nextInt();
	int row = scan.nextInt();

	System.out.println(nbCases+" "+col+" "+row);
	Solver s = new Solver(col,row,nbCases);
	s.solve();
    }
}
