提交时间:2024-11-22 20:13:13

运行 ID: 301159

n,m=input().split() n=int(n) m=int(m) a=n while a <= m: if a % 2 == 1: print(a) a+=1