1b28b8f3c4
Change-Id: Ie8d8c092e64890af2f0886303ef3f16752ba5b76
11 lines
160 B
Python
Executable File
11 lines
160 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
import json
|
|
|
|
data = json.loads(sys.stdin.read())
|
|
|
|
rst = {'val_x_val': int(data['val'])**2}
|
|
|
|
sys.stdout.write(json.dumps(rst))
|