[ create a new paste ] login | about

Link: http://codepad.org/Z8l8G3Hx    [ raw code | output | fork ]

sah - Python, pasted on Mar 2:
1
2
3
4
5
6
7
8
# -*- coding: utf-8 -*-

import codecs
import sys
sys.stdin = codecs.getreader('utf-8')(sys.stdin)
sys.stdout = codecs.getwriter('utf-8')(sys.stdout)

print u'\N{snowman}'


Output:
1


Create a new paste based on this one


Comments: