Round UUID: 944bc421-44d3-4ad3-9ac1-8b40b4f59dc4
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 AccentThickness is greater than 35, classify as "Loyal" 2. If SecretHandshakeQuality is less than 62 AND AccentThickness is between 20 and 26 (inclusive), classify as "DoubleAgent" 3. If SecretHandshakeQuality is less than 62 AND AccentThickness is less than 20, classify as "DoubleAgent" 4. If SecretHandshakeQuality is greater than 70 AND AccentThickness is less than 32, classify as "DoubleAgent" 5. If SecretHandshakeQuality is between 62 and 70 (inclusive) AND AccentThickness is between 32 and 35 (inclusive), classify as "Loyal" 6. If SecretHandshakeQuality is less than 62 AND AccentThickness is greater than 26, classify as "Loyal" 7. Otherwise, classify as "DoubleAgent" Output only the classification: either "DoubleAgent" or "Loyal".