프로그래머스 120819 아이스 아메리카노

1 개요[ | ]

프로그래머스 120819 아이스 아메리카노

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

vector<int> solution(int money) {
    return vector<int> {money/5500, money%5500};
}