In python:
import math
radius = float(input("Enter the radius of a cylinder: "))
height = float(input("Enter the height of a cylinder: "))
print(f"The surface area of a cylinder with radius of {radius} and height of {height} equals {round((2*math.pi * radius * height) + ((2 * math.pi) * radius**2), 2)}")
I rounded the answer to 2 decimal places, I don't know if that's how you want it. Anyway, I hope this helps!