#include int main() { long long int a, b; scanf("%lld %lld", &a, &b); if (a >= b) puts("S"); else puts("K"); return 0; }