PROGRAMMING:Cycle Gujiao conjecture
When studying natural numbers, the Japanese mathematician Kawakami discovered an interesting phenomenon: "if it's an even number, divide by 2, if it's an odd number, multiply by 3 and 1". After a limited number of such processing steps, we can finally get 1
Input a natural number arbitrarily and give the operation process of result 1.
###Input format:
Enter a natural number n
###Output format:
Output each operation step until the result is 1
###Input sample 1:
```in
five
```
###Output sample 1:
```out
5*3+1=16
16/2=8
8/2=4
4/2=2
2/2=1
```
###Input sample 2:
```in
six
```
###Output sample 1:
```out
6/2=3
3*3+1=10
10/2=5
5*3+1=16
16/2=8
8/2=4
4/2=2
2/2=1
```
answer:If there is no answer, please comment
Input a natural number arbitrarily and give the operation process of result 1.
###Input format:
Enter a natural number n
###Output format:
Output each operation step until the result is 1
###Input sample 1:
```in
five
```
###Output sample 1:
```out
5*3+1=16
16/2=8
8/2=4
4/2=2
2/2=1
```
###Input sample 2:
```in
six
```
###Output sample 1:
```out
6/2=3
3*3+1=10
10/2=5
5*3+1=16
16/2=8
8/2=4
4/2=2
2/2=1
```
answer:If there is no answer, please comment