경우의 수는 headgear -> (hat, turban, x)
eyewear -> (sunglasses, x)
두 경우를 곱해서 전부 입지 않은 경우를 빼면 정답이다.
=> (headgear + 1) * (eyewear + 1) - 1
from collections import defaultdict
for _ in range(int(input())):
n = int(input())
a = defaultdict(int)
ans = 1
for _ in range(n):
name, op = input().split()
a[op] += 1
for i in a:
ans *= (a[i] + 1)
print(ans - 1)