import std.algorithm; import std.array; import std.bigint; import std.conv; import std.math; import std.range; import std.stdio; import std.string; import std.typecons; int readint() { return readln.chomp.to!int; } int[] readints() { return readln.split.map!(to!int).array; } void main() { auto ss = readln.split; auto a = BigInt(ss[0]); auto b = BigInt(ss[1]); char cmp(BigInt a, BigInt b) { if (a == b) return 'E'; return a > b ? 'S' : 'P'; } writeln(cmp(a + b, a * b)); }