import java.io.*;
class Test{
public static void main(String args[]){
int a, b, t;
a = readNumber();
b = readNumber();
for( t = 0 ; a <= b ; a++ ){
if( a > 100 ) // 100以上になったら終了
break;
if( a % 2 == 1 ) // 偶数じゃなかったら、変化式を実行
continue;
t = t + a;
}
System.out.println(t);
}
// キーボードから数字を入力するメソッド
public static int readNumber(){
byte b[] = new byte[100];
try{
System.in.read(b);
return Integer.parseInt((new String(b)).trim());
}catch(Exception e){
return 0;
}
}
}
|