#-*- coding: utf-8 -*-
#-*- coding: cp950 -*-
#以上用於中文註解
#--------------------------------
''' 題目:Dear Lover
' 日期:2016/10/2
' 作者:川匠神樂
' 學號:410175031
'''
#輸入收件者的名字
Receiver = input("Input Receiver:")
#輸入寄件者的名字
Sender = input("Input Sender:")
#print: 用於顯示文字
print ("Dear :", Receiver)
print ("\t\tWithout you,I\'d be a soul without a purpose.\n\tWithout you,I\'d be an emotion without a heart.") #\t 代表Tab. 以及 \' = '
print ("\tI\'m a face without expression,A heart with no beat.\n\tWithout you by my side,I'm just a flame without the heat.")
#下一段
print ("")
print("\t\tIf you were a teardrop;In my eye, \n\tFor fear of losing you,I would never cry.")
print("\tAnd if the golden sun,Should cease to shine its light,\n\tJust one smile from you,Would make my whole world bright.");
#下一段
print("")
print("\t\tIf I were to fall in love,It would have to be with you.\n\tYour eyes, your smile,The way you laugh,The things you say and do.")
print("\tTake me to the places,My heart never knew\n\tSo, if I were to fall in love,It would have to be with you.")
#結尾換行兩行
print("")
print("")
#將名字移動到右下角
print("\t\t\t\t\t\t\t\tBy ", Sender)