int total = 10000*a;
total+= 5000*b;
total+= 1000*c;
이부분은 엔터로 total의 값을 계속 추가하는 부분인가요?
# 지폐의 총합
#### CODE <a class='btn btn-default' href='/codes/53861'>Link</a>
```
public class Bills {
public static void main(String[] args) {
int a = 3;
int b = 4;
int c = 7;
int total = 10000*a;
total+= 5000*b;
total+= 1000*c;
System.out.println(total+"원");
}
}
```
#### INPUT
```
```
#### OUPUT
```
57000원
```
sehongpark님의 답변
네, 맞습니다.
기존 변수에 우측값을 추가해 대입하는 연산자입니다.
```
int a = 0;
// a = a + 5; 와 같음
a += 5;
```