1489: 【Python】间隔输出字符

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:8 Solved:5

Description

请用字符变量做循环变量输出间隔顺序的字符。

Input

两个字符c1 c2 ,c1<=c2 且c1和c2同时为大写或小写

Output

第一行 c1 到 c2 的字符间隔输出。第二行 c2 到 c1 的字符间隔输出

Sample Input Copy

a j

Sample Output Copy

a c e g i
j h f d b

HINT

【样例输入2】
K N
【样例输出2】
K M 
N L 

Source/Category