Dispute
Easy
Execution time limit is 1 second
Runtime memory usage limit is 64 megabytes
You are tasked with determining which army is stronger: Saruman's or Sauron's. Assume that one of Saruman's orcs is equivalent in strength to 1.5 of Sauron's orcs.
Input
The first line contains the number X – the number of orcs in Saruman's army, and the second line contains Y – the number of orcs in Sauron's army (0 ≤ X, Y ≤ 10^100).
Output
Print "Sauron" if Sauron's army is stronger. If Saruman's army is stronger, print "Saruman". In the event of a tie, print "Tie".
Examples
Input #1
Answer #1
Submissions 1K
Acceptance rate 12%