1、从键盘输入两个字符串( 使用input函数),然后比较两个字符串,按照从小到大的顺序输出,
2个字符串有什么从小到大?
a = input() b = input() if (a < b): print(a, " ", b) else: print(b, " ", a)