summaryrefslogtreecommitdiff
path: root/num_tok
blob: a11b0d7b05aba5367f014d6531be7f922718435f (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env ruby

STDIN.set_encoding('utf-8')

while line = STDIN.gets
  puts line.split.length
end