#!/usr/bin/perl

while (<>) {
    print if /\bcame\b/;
}
