#!/bin/python from Game import Game # Ta key player_key = '' # Le code du challenge engine_code = '' def main(): game = Game(player_key, engine_code) data = game.input() # Data du jeu print(data) # ------- CODE ICI ----------- response = '' # Permet d'envoyer la reponse du challenge # game.output({'data': response}) main()