#include #include using namespace std; using lint=int64_t; int main() { lint A,B; cin >> A >> B; if(A>=B) cout << "S"; else cout << "K"; cout << endl; return 0; }