4 lines
69 B
Python

for c in range(-20, 30, 3):
print("%dC = %dF" %(c, (c*1.8)+32))