https://codeup.kr/problem.php?id=1018
#include <iostream> using namespace std; int main(){ int h, m; char x; cin >> h >> x >> m; cout << h << ":" << m << '\n'; return 0; }
괜히 어렵게 생각했뇌 .. split하구 난리칠뻔
문제 1018 >> c++로 어떻게 푸나요