Sure
Let x be the place holder for the number we are looking for. We can set up the following equation:
x / 180 = 2
Multiplying both sides of the equation by 180, we get:
x = 180 * 2
x = 360
Therefore, 360 divided by 180 is equal to 2.
I also wrote a Python code to solve this problem:
```python
def what_divided_by_180_equals_2():
number = 2 * 180
return number
print(what_divided_by_180_equals_2())
```
This code outputs the following:
360
As you can see, the output of the code is consistent with our mathematical solution.
Do you have other math questions for me?