In how many ways you can put two similar notes in a bag, so on each one there is a password of 6 letters (abc..z).
I am having trouble with it. My way of thinking: On the first note: 26^6 On the second note: it is the same thing, but i may have doubles, so i need to divide it by 2. so i am thinking of (26^6)/2
so the answer is 26^6 + (26^6)/2
But i don't think I am right.