Round 422

Round UUID: bce0d4bc-fb38-404a-9418-208f772c6008

Prompt:

You will receive one record containing two numeric features:
  • SecretHandshakeQuality  – a score between 0 and 100 (higher means a better clandestine handshake)
  • AccentThickness        – a score between 0 and 100 (higher means a thicker, more obvious accent)

Return exactly one word – either
  DoubleAgent
  Loyal
based on the following ordered rules.  Evaluate the rules in order and stop as soon as one matches.

1. If AccentThickness > 40 → Loyal
2. Else if SecretHandshakeQuality ≥ 70 → DoubleAgent
3. Else if SecretHandshakeQuality < 58 → Loyal
4. Else (i.e., 58 ≤ SecretHandshakeQuality < 70)
     • If AccentThickness ≤ 28 → DoubleAgent
     • Otherwise → Loyal

Do not output anything except the single word label.