CF451A.Game With Sticks

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

After winning gold and silver in IOI 2014, Akshat and Malvika want to have some fun. Now they are playing a game on a grid made of nn horizontal and mm vertical sticks.

An intersection point is any point on the grid which is formed by the intersection of one horizontal stick and one vertical stick.

In the grid shown below, n=3n=3 and m=3m=3 . There are n+m=6n+m=6 sticks in total (horizontal sticks are shown in red and vertical sticks are shown in green). There are nm=9n·m=9 intersection points, numbered from 11 to 99 .

The rules of the game are very simple. The players move in turns. Akshat won gold, so he makes the first move. During his/her move, a player must choose any remaining intersection point and remove from the grid all sticks which pass through this point. A player will lose the game if he/she cannot make a move (i.e. there are no intersection points remaining on the grid at his/her move).

Assume that both players play optimally. Who will win the game?

输入格式

The first line of input contains two space-separated integers, nn and mm ( 1<=n,m<=1001<=n,m<=100 ).

输出格式

Print a single line containing "Akshat" or "Malvika" (without the quotes), depending on the winner of the game.

输入输出样例

  • 输入#1

    2 2
    

    输出#1

    Malvika
    
  • 输入#2

    2 3
    

    输出#2

    Malvika
    
  • 输入#3

    3 3
    

    输出#3

    Akshat
    

说明/提示

Explanation of the first sample:

The grid has four intersection points, numbered from 11 to 44 .

If Akshat chooses intersection point 11 , then he will remove two sticks ( 121-2 and 131-3 ). The resulting grid will look like this.

Now there is only one remaining intersection point (i.e. 44 ). Malvika must choose it and remove both remaining sticks. After her move the grid will be empty.

In the empty grid, Akshat cannot make any move, hence he will lose.

Since all 44 intersection points of the grid are equivalent, Akshat will lose no matter which one he picks.

首页