#!/usr/local/bin/perl

@input = <STDIN>;
@input = reverse (sort (@input));
print (@input);
