#P41. 【求测试】【难题预警】“抄答案”也是技术活

【求测试】【难题预警】“抄答案”也是技术活

Background

编程老师给小M布置了 1011451410^{114514} 道回家作业。由于编程老师只看通过了几道题而不看程序,他决定直接输出这些题的输出。然而,输出文件之大,不知其几KB也。现在你需要帮助他输出答案。

Description

输出需要输出的内容。

Format

Input

一个数字表示第几个测试点。

Output

输出需要输出的内容。

Samples

1
1 1451419196768 4590193696630 169934881048 527786426036 9651893229071 2931163616823 5167309747739 5……
#此处省略3640563个字节

Promot

需要输出的内容见附加文件。

代码需小于64KB。

部分数据生成器

#3
import random
with open('3.out','w') as f:
    with open('0.txt','w') as q:
        a=str(random.randint(10**100,10**101))
        q.write(a+'\n')
        for i in range(11):
            b=str(random.randint(1,10**2))
            c=str(random.randint(10**100,10**101))
            q.write(str(i)+':   b:  '+b+'\nc:  '+c+'\n')
            a=a.replace(b,c)
        f.write(a)