


# https://www.globalsino.com/ICs/
# format() method for formating strings

myName = "Yougui Liao"
thisYear = 2022

print("This is {}, and this year is {}".format(myName, thisYear))

