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

def surfacearea_cone(r, h):
    l = math.sqrt(r**2 + h**2)  # Calculate the slant height
    surface_area = math.pi * r * (r + l)  # Calculate the surface area
    return surface_area
```