My issue
find the error
My code
// Debug the code
#include <stdio.h>
int main() {
int A, B, C, D;
scanf("%d%d%d%d", &A, &B, &C, &D);
int price1 = A - C;
int price2 = B - D;
if (price1 < price2) {
printf("First\n");
} else if (price2 > price1) {
printf("Second\n");
} else {
printf("Any\n");
}
return 0;
}
Learning course: Learn C Programming
Problem Link: https://www.codechef.com/learn/course/rcpit-programming-c/RCPITLPC20/problems/RCPITCP129