/*
TASK: fsort
LANG: C++
*/

#include <iostream>
using namespace std;

int main() {
    
    printf( "1 7 3 19\n" );
    
    return 0;
}
