#9866. ... (Triple Dots)

... (Triple Dots)

题目描述

We have a string SS consisting of lowercase English letters.

If the length of SS is at most KK, print SS without change.

If the length of SS exceeds KK, extract the first KK characters in SS, append ... to the end of them, and print the result.

我们有一个由小写英文字母组成的字符串 SS

如果 SS 的长度最多为 KK ,则打印 SS ,不做任何更改。

如果 SS 的长度超过 KK ,则提取 SS 中的前 KK 个字符,在它们的末尾添加 "...",并打印结果。

输入格式

输入内容按以下格式标准输入:

KK
SS

输出格式

打印问题陈述中所述的字符串。

样例 #1

样例输入 #1

7
nikoandsolstice

样例输出 #1

nikoand...

样例 #2

样例输入 #2

40
ferelibenterhominesidquodvoluntcredunt

样例输出 #2

ferelibenterhominesidquodvoluntcredunt

说明

数据规模与约定

  • KK 是介于 11100100 之间的整数。(包括在内)之间的整数。
  • SS 是由小写英文字母组成的字符串。
  • SS 的长度介于 11100100 (含)之间。

样例 11 解释

nikoandsolstice`的长度为 1515 ,超过了 K=7K=7

我们应该提取这个字符串的前 77 个字符,在它们的末尾添加 ...',然后打印结果 nikoand...'。

样例 22 解释

盖乌斯-尤利乌斯-凯撒的名言。