Help me in solving PYTH26 problem

My issue

I am currently learning the learn python course but while solving the ex. I am not seeing the prewritten code…due to which I don’t know what values I need to assign to the variable

Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone

@parekhhyash
U have to code this ex from the scratch.
This is the solution for reference.

# Solution as follows

a = 'Learning'
b = 'is fun!'

print(a, b)

a=“Learning”
b=“is fun!”
print(a+" "+b)