TASK #1 - Eban Numbers Write a script to generate all Eban Numbers <= 100. An Eban number is a number that has no letter 'e' in it when the number is spelled in English (American or British). Example 2, 4, 6, 30, 32 are the first 5 Eban numbers. MY NOTES: Very easy, no doubt there are CPAN modules to "speak" numbers in English, but let's do it from first principles.. TASK #2 - Cardano Triplets Write a script to generate first 5 Cardano Triplets. A triplet of positive integers (a,b,c) is called a Cardano Triplet if it satisfies the below condition. cuberoot(a+b.sqrt(c)) + cuberoot(a-b.sqrt(c)) = 1 Example (2,1,5) is the first Cardano Triplet. MY NOTES: Ok, two mildly tricky things: 1. real arithmetic means "=" is imprecise, we can't even use rationals as sqrt() and cuberoot() are involved, so we'll need our old abs(diff)