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