302340: CF451A. Game With Sticks
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Game With Sticks
题意翻译
给出m根横棒,n根竖棒,交叉摆出n*m个交点,两人轮流摆,每次选一个交点,拿走过这个交点的两个棒。最后没得选的人输。输出胜者。题目描述
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 $ n $ horizontal and $ m $ 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=3 $ and $ m=3 $ . There are $ n+m=6 $ sticks in total (horizontal sticks are shown in red and vertical sticks are shown in green). There are $ n·m=9 $ intersection points, numbered from $ 1 $ to $ 9 $ . ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF451A/18b27511f71a42f9e0fd0b22af6d5248021325d7.png)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, $ n $ and $ m $ ( $ 1<=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