
def PGAffect3():
    x = 3
    y = x
    x = 3 * x + 1
    x = 2 * x - 5 * y
    print("x vaut ", x, " et y vaut ", y, sep="")

PGAffect3()