8 lines
111 B
Python
8 lines
111 B
Python
#!/usr/bin/python
|
|
|
|
try:
|
|
import json
|
|
except ImportError:
|
|
import simplejson as json
|
|
|
|
print json.dumps(1)
|