# 문제주소: https://www.acmicpc.net/problem/2908 # 코드import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;public class BOJ2908_v1 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] input = br.readLine().split("\\s+"); int[] nums = new int[input.length]; int ..