NPLQLA - Editorial

PROBLEM LINK:

Practice

Contest

Author: Harsh Shah

Tester: Aniket Marlapalle

Editorialist: Aniket Marlapalle

DIFFICULTY:

CAKEWALK

PREREQUISITES:

Basic Programming

PROBLEM:

Compare 2 given numbers.

EXPLANATION:

This problem is very simple, following snippet might suffice:

 if(X > Y){
	printf("Alice\n");
}
else if(X < Y){
	printf("Bob\n");
}
else{
	printf("Math\n");
}