https://www.acmicpc.net/problem/25625
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int x = Integer.parseInt(st.nextToken());
int y = Integer.parseInt(st.nextToken());
if (x > y) System.out.println(x + y);
else System.out.println(y - x);
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 25377 빵 (0) | 2022.12.10 |
---|---|
백준 25591 푸앙이와 종윤이 (0) | 2022.12.10 |
백준 25640 MBTI (0) | 2022.12.09 |
백준 10984 내 학점을 구해줘 (1) | 2022.12.09 |
백준 2476 주사위 게임 (0) | 2022.12.09 |