// yukicoder: No.374 コイン // 2019.7.8 bal4u #include int main() { long long A, B; scanf("%lld%lld", &A, &B); puts(A >= B? "S": "K"); return 0; }