#include int main() { unsigned int A,B; scanf("%u", &A); scanf("%u", &B); if (A < B) { printf("K\n"); } else { printf("S\n"); } return 0; }