"""to16.py -- convert us-ascii to utf-16

$Id: to16.py,v 1.1 2005/07/01 22:23:51 connolly Exp $

"""

import sys

def main():
    txt = sys.stdin.read()
    t16 = txt.encode("utf-16")
    sys.stdout.write(t16)

if __name__ == '__main__':
    main()
