#include int main(){ int a,b; char *S; scanf("%d %d",&a,&b); if(a+b>a*b) S="S"; else{ if(a+b==a*b) S="E"; else S="P"; } printf("%s\n",S); return 0; }