If a=1, b=2, c=3, d=4, e=5, f=6

I need to find any combination of these letters that creates a number value more than 30. you can use the letters as many times as you need to.
so far I can only think of effaced, but that is only 30.. any help?

To find any combination of the given letters that creates a number value more than 30, you can assign their corresponding values and then try different combinations.

First, let's assign the respective numerical values to the letters:
a = 1
b = 2
c = 3
d = 4
e = 5
f = 6

One approach to finding combinations that add up to more than 30 is to start with combinations that contain the letter with the largest value, "f" (6). Since 6 is the largest value, any combination that includes it will have a higher chance of surpassing 30. We can then try combining the other letters with "f" in different ways.

Here's an example combination that adds up to more than 30:
fff (6 + 6 + 6 = 18)

To further increase the value, we can use the letter "e" (5) since it is the next highest value. Here's a combination using both "f" and "e":
fffe (6 + 6 + 6 + 5 = 23)

By using the letter "d" (4) as well, we can increase the value even more:
fffed (6 + 6 + 6 + 5 + 4 = 29)

Finally, by including the letter "c" (3) or "b" (2), we can create a combination that exceeds 30:
fffedb (6 + 6 + 6 + 5 + 4 + 3 + 2 = 32)

Therefore, the combination "fffedb" would be an example that meets your criteria of having a value more than 30 using the given letters.