a, b = map(int, input().split()) c = a**2 // b**2 if a < b: print("K") else: print("S" if c % 2 == 0 else "K")