summaryrefslogtreecommitdiff
path: root/num-tok
blob: 0c95aa8aab50ed8f29d60d8c09095b58be72cf57 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env ruby

STDIN.set_encoding "utf-8"
STDOUT.set_encoding "utf-8"

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