# 센트를 달러로!
## 문제
2357 센트는 몇 달러인가?
## 출력 예
```
23달러 57센트
```
## 뼈대코드
```
#include <stdio.h>
int main(int argc, char* argv[])
{
int cents = 2357;
int dollars = 0;
cents = 0;
printf("%d달러 %d센트\n", dollars, cents);
return 0;
}
```
## 힌트
+ 나눗셈 연산자: `/`
+ 나머지 연산자: `%`