#include <stdio.h>

int main(void) {
	int a = 12, b = 10, c = 10;
    if (a > b)
    if (b > c)
        printf("s1");
    else printf("s2");
	return 0;
}
