输入两个正整数m和n,输出m到n之间的所有整数
输入m和n,其中0< m < n<=1000。
输出对应的整数,每个数字之间用一个空格隔开
3 5
3 4 5
数据读入
a,b = input().split(" ") a = int(a) b = int(b)