提交时间:2025-04-05 19:18:50
运行 ID: 316107
m,n=map(int,input().split()) s=0 i=m while i<=n: if i%2==1: s+=i i+=1 print(s)