2012-02-23 14:18:51 -05:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
2012-02-23 20:51:29 -05:00
|
|
|
try:
|
2012-02-25 17:16:23 -05:00
|
|
|
import json
|
2012-02-23 20:51:29 -05:00
|
|
|
except ImportError:
|
2012-02-25 17:16:23 -05:00
|
|
|
import simplejson as json
|
2012-02-23 14:18:51 -05:00
|
|
|
|
|
|
|
print json.dumps(1)
|