import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner in = new Scanner(System.in);
int A = in.nextInt();
int B = in.nextInt();
int C = in.nextInt();
if(A==B&&B==C){
System.out.println(10000+(1000*A));
}
else if(A!=B&&B!=C&&A!=C){
int max = Math.max(A, Math.max(B,C));
System.out.println(100*max);
}
else{
if(A!=B){
System.out.println(1000+(100*C));
}
else if(A!=C){
System.out.println(1000+(100*B));
}
}
}
}
'[BOJ] - JAVA' 카테고리의 다른 글
[백준] 10950 : A+B-3 JAVA 풀이 (0) | 2022.05.10 |
---|---|
[백준] 2739 : 구구단 JAVA 풀이 (0) | 2022.05.10 |
[백준] 2525 : 오븐 시계 JAVA 풀이 (0) | 2022.05.09 |
[백준] 2884 : 알람 시계 JAVA 풀이 (0) | 2022.05.09 |
[백준] 14681 : 사분면 고르기 JAVA 풀이 (0) | 2022.05.09 |