﻿from random import *
x=randint(1,6)
if x==6:
    print("C'est gagné!")
else:
    print("C'est perdu!")

