# 구구단 출력
<div class="embed-responsive embed-responsive-16by9">
<iframe src="https://www.youtube.com/embed/cd3TkczZWAQ" frameborder="0" allowfullscreen></iframe>
</div>
## 문제
2단부터 9단까지, 구구단을 출력하는 프로그램을 작성하려 한다. 출력 예와 같은 결과를 얻도록 코드를 완성하시오.
##출력 예
```
2단
2 x 1 = 2
2 x 2 = 4
...
2 x 9 = 18
...
9단
9 x 1 = 9
...
9 x 9 = 81
```