#K43012. Tim and Sara Game Outcome
Tim and Sara Game Outcome
Tim and Sara Game Outcome
Tim and Sara are playing a game with two positive integers A and B. Tim always starts first. The rule of the game is simple: if the larger number is divisible by the smaller one, i.e. if \(\max(A, B) \bmod \min(A, B) = 0\), then Sara wins. Otherwise, Tim wins.
Your task is to determine the winner given the two numbers.
inputFormat
The input consists of a single line containing two space-separated integers A and B.
outputFormat
Output the name of the winner: either "Tim" or "Sara". There should be no extra spaces or newline characters.
## sample2 3
Tim