정답
import java.util.Scanner;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
if(A==1)
{
if(B==2)
{
System.out.println("B");
}
else if(B==3)
{
System.out.println("A");
}
}
else if(A==2)
{
if(B==1)
{
System.out.println("A");
}
else if(B==3)
{
System.out.println("B");
}
}
else
{
if(B==1)
{
System.out.println("B");
}
else if(B==2)
{
System.out.println("A");
}
}
}
}
'Java > SWEA' 카테고리의 다른 글
[JAVA] SWEA 1545. 거꾸로 출력해 보아요 (0) | 2024.05.01 |
---|---|
[JAVA] SWEA 2019. 더블더블 (0) | 2024.05.01 |
[JAVA] SWEA 1933. 간단한 N의 약수 (0) | 2024.05.01 |
[JAVA] SWEA 1938. 아주 간단한 계산기 (0) | 2024.05.01 |
[JAVA] SWEA 2025. N줄덧셈 (0) | 2024.05.01 |