------
## 最终结论
```python
import math

def perimeter(radius, height):
    return 2 * math.pi * radius
```