#!/usr/bin/env python
i = 0
f = open('en_US.dic')
for line in f:
    i = i + 1
print i
