#!/usr/bin/perl

while (<STDIN>) {
  print;
  chomp;
  print "$_\'s\n";
}
