从键盘输入字符串a:apple从键盘输入字符串b:school字符串a连接字符串b appleschool
a = input("请输入字符串a:") b = input("请输入字符串b:") r = a + b print("连接后的字符串为:", r)