import sys
res=''
stdin=sys.stdin.read()
print('STDIN='+stdin)
for char in stdin:
  res += char+'Z'
print('RES='+res)
