#!/usr/bin/python

try:
	import json
except ImportError:
	import simplejson as json

print json.dumps(1)
