#include #include int main() { char a[202], b[202]; scanf("%s%s", a, b); if (strlen(a) > 1) { if (strlen(b) > 1) printf("P\n"); else if (b[0] > '1') printf("P\n"); else printf("S\nS"); } else if (strlen(b) > 1) { if (b[0] > '1') printf("P\n"); else printf("S\n"); } else { int x = a[0] - '0'; int y = b[0] - '0'; if (x + y > x* y) printf("S\n"); else if (x + y < x * y) printf("P\n"); else printf("E\n"); } return 0; }