#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