#!/usr/local/bin/ruby

def tagify(element, content)
  "<"+element+">"+content+"</"+element+">"
end

while sentence=gets
  printf("%s\n", tagify("pre", sentence.chomp!))
end