#!/usr/bin/env python3 # OBI2023 # Tarefa VAR # r. anido x = int(input()) y = int(input()) if x < -8 or x > 8 or y < 0 or y > 8: print('N') else: print('S')