Round UUID: d754f7e8-374c-4b59-9d8a-e1390e721eaa
Prompt:
You are tasked with identifying whether an entity is a "DoubleAgent" or "Loyal" based on two characteristics: SecretHandshakeQuality and AccentThickness. Apply these rules in order: 1. If SecretHandshakeQuality is less than 62 AND AccentThickness is less than 20, classify as "DoubleAgent" 2. If AccentThickness is greater than 35 AND SecretHandshakeQuality is less than 70, classify as "Loyal" 3. If SecretHandshakeQuality is greater than 70 AND AccentThickness is less than 32, classify as "DoubleAgent" 4. If SecretHandshakeQuality is between 62 and 70 (inclusive) AND AccentThickness is between 32 and 35 (inclusive), classify as "Loyal" 5. If SecretHandshakeQuality is less than 62 AND AccentThickness is greater than or equal to 20, classify as "Loyal" 6. Otherwise, classify as "DoubleAgent" Output only the classification: either "DoubleAgent" or "Loyal".