{"raw_statement":[{"iden":"problem statement","content":"We have a string $S$ consisting of lowercase English letters.\nIf the length of $S$ is at most $K$, print $S$ without change.\nIf the length of $S$ exceeds $K$, extract the first $K$ characters in $S$, append `...` to the end of them, and print the result."},{"iden":"constraints","content":"*   $K$ is an integer between $1$ and $100$ (inclusive).\n*   $S$ is a string consisting of lowercase English letters.\n*   The length of $S$ is between $1$ and $100$ (inclusive)."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$K$\n$S$"},{"iden":"sample input 1","content":"7\nnikoandsolstice"},{"iden":"sample output 1","content":"nikoand...\n\n`nikoandsolstice` has a length of $15$, which exceeds $K=7$.\nWe should extract the first $7$ characters in this string, append `...` to the end of them, and print the result `nikoand...`."},{"iden":"sample input 2","content":"40\nferelibenterhominesidquodvoluntcredunt"},{"iden":"sample output 2","content":"ferelibenterhominesidquodvoluntcredunt\n\nThe famous quote from Gaius Julius Caesar."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}