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