# -*- coding: utf-8 -*-
"""
Created on Thu Sep 17 13:49:02 2020

@author: Sim
"""

# fcntest4.py

def f():
    mystr = "I love Seoul!"
    print(mystr)
    
mystr = "I love Busan!"
f()
print(mystr)