-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathp370.c
32 lines (29 loc) · 786 Bytes
/
p370.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* La 13-14 */
#include <stdio.h>
int main() {
long numCasos, numero1, numero2;
scanf("%ld\n", &numCasos);
for( ; numCasos > 0; numCasos--) {
scanf("%ld-%ld", &numero1, &numero2);
if(numero1 + 1 == numero2 || numero1 - 1 == numero2) {
if(numero1 < numero2) {
if(numero1 % 2) {
printf("NO\n");
} else {
printf("SI\n");
}
} else if(numero1 > numero2) {
if(numero2 % 2) {
printf("NO\n");
} else {
printf("SI\n");
}
} else {
printf("NO\n");
}
} else {
printf("NO\n");
}
}
return 0;
}