fork download
  1. import json
  2. import binascii
  3.  
  4. secret_number = input()
  5. jsonified = binascii.unhexlify(secret_number).decode('UTF-8')
  6. name, power, attack = json.loads(jsonified)
  7.  
  8. print(name)
  9. print(power)
  10. print(attack)
  11.  
Success #stdin #stdout 0.03s 10288KB
stdin
5b22616263222c20352e302c205b312c20322c20335d5d
stdout
abc
5.0
[1, 2, 3]