R=input().split(',') G=input().split(',') B=input().split(',') r=0 if R[0]=='NONE' else len(R) g=0 if G[0]=='NONE' else len(G) b=0 if B[0]=='NONE' else len(B) print((16-r)**2*(16-g)**2*(16-b)**2)