¿Cuál es el resultado del siguiente código?
public static string CompareIntegers(int x, int y) {
if (x > y) {
return "X is greater than Y";
}
else if (x < y) {
return "X is less than Y";
}
else {
return "X is equal to Y";
}
}
CompareIntegers(5, 10);