program main implicit none integer::A,B read *,A,B if(A.ge.B) then print '(a)',"S" else print '(a)',"K" end if end program main