import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;


public class power

{

public static void main(String[] args) throws IOException

{g

String OE2 = "짝수";

System.out.println(OE2);

InputStreamReader ir= new InputStreamReader(System.in);

BufferedReader br= new BufferedReader(ir);

System.out.println("짝수/홀수/모두 골라주십시오.");

String OE = br.readLine();

if(OE == OE2)

{

for(int a=1;a<10;a++)

{

if(a%2==0)

{

for(int i=1;i<10;i++)

{

System.out.println(a + "곱하기" + i + "는" + a*i);

}

}

}

}

}

}



한글비교를 하고싶은데 어떻게하냐 ㅠㅠㅠ