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

#include <iostream>
using namespace std;

int main() {
    
    printf( "2 5 2 2 4 3\n" );
    
    return 0;
}
