머쓱이가 아이스 아메리카노 한 잔은 꼭 마실 수 있길 빕니다.
class Solution { public int[] solution(int money) { int[] answer = new int[2]; answer[0] = money/5500; answer[1] = money%5500; return answer; } }