#include<stdio.h>
int main()
{
int x,y,i,s=0;
scanf("%d %d",&x,&y);
if (x < y){
for (i = x + 1; i < y; i++){
if (i % 2 != 0)
s += i;
}
printf("%d\n",s);
}
else {
for (i = y + 1; i < x; i++){
if (i % 2 != 0)
s += i;
}
printf("%d\n",s);
}
return 0;
}
int main()
{
int x,y,i,s=0;
scanf("%d %d",&x,&y);
if (x < y){
for (i = x + 1; i < y; i++){
if (i % 2 != 0)
s += i;
}
printf("%d\n",s);
}
else {
for (i = y + 1; i < x; i++){
if (i % 2 != 0)
s += i;
}
printf("%d\n",s);
}
return 0;
}
No comments:
Post a Comment