# -*- coding: utf-8 -*-
"""
Created on Tue Sep 22 15:06:21 2020

@author: Sim
"""
#fcnarg1.py
def myfcn(me, you):
    mystr = "I am {0}, you are {1}".format(me, you)
    return mystr

print(myfcn("Songyong", "student"))
print(myfcn("student", "Songyong"))
print(myfcn(you="student", me="Songyong"))
print(myfcn(me="Songyong", you="student"))
    
