﻿from math import *

def Mpi(a,b):
    d=(b-a)/pi
    if d%2==0:
        rep="oui"
    else:
        rep="non"
    return rep





