#!/usr/bin/python # Convert a line from stdin to the U notation used in locales # Author: Martin Pitt # License: Public Domain import sys line = sys.stdin.readline().decode('UTF-8') for c in line.strip(): sys.stdout.write('' % ord(c)) print