#coding=utf-8
'''
Created on 2018年8月26日ide
@author: peng.wangthis
注意點:
①#coding=utf-8,必定要放在第一行,至於爲何,不重要,就當成是規範了。
②Python中的註釋用的是,單行用的是#,多行用三個'
③等待用戶輸入
raw input 輸入的均是字符串utf-8
input 輸入的默認是數字,若是須要輸入的是字符串,則須要在輸入前加入「」或者''字符串
'''
#line=raw_input("this is text line...\n")
#print "hello,Python"+" "+line
num=input("please enter the number :")
print num
print num+"1234"input