#----------------------------------------------------------------------- # threesort.py #----------------------------------------------------------------------- import stdio import sys # Accept three integers from the command-line, and write them to # standard output in ascending order. a = int(sys.argv[1]) b = int(sys.argv[2]) c = int(sys.argv[3]) # Compute stats. minimum = min(a, b, c) maximum = max(a, b, c) median = a + b + c - minimum - maximum; # Write stats. stdio.writeln(minimum) stdio.writeln(median) stdio.writeln(maximum) #----------------------------------------------------------------------- # python threesort.py 18 25 74 # 18 # 25 # 74 # python threesort.py 74 18 25 # 18 # 25 # 74