import java.io.*;
class Test{
public static void main(String args[]){
int i = readNumber();
if( i & 1 == 1 ){
System.out.println("奇数です");
}
else{
System.out.println("偶数です");
}
}
// キーボードから数字を入力するメソッド
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;
}
}
}
|