def main():
    a = int(input())
    b = int(input())
    print('Even' if a*b % 2 == 0 else 'Odd')


if __name__ == '__main__':
    main()