4 public class headshot_gk
{
6 static PrintWriter out
;
8 public void run() throws IOException
{
9 char[] a
= in
.next().toCharArray();
10 char prev
= a
[a
.length
- 1];
22 int z
= load2
* a
.length
- load
* load
;
23 out
.println(z
== 0 ?
"EQUAL" : z
< 0 ?
"ROTATE" : "SHOOT");
26 public static void main(String
[] args
) throws Exception
{
27 in
= new Scanner(new File("headshot.in"));
28 out
= new PrintWriter("headshot.out");
30 new headshot_gk().run();