2024-07-02 12:19:33 +01:00
|
|
|
from math import lcm, ceil, log2
|
2024-05-28 02:28:12 +01:00
|
|
|
from random import choice, randint
|
|
|
|
from os import system
|
2024-06-12 18:41:40 +01:00
|
|
|
from collections import defaultdict
|
2024-05-28 02:28:12 +01:00
|
|
|
import io
|
|
|
|
|
2024-06-12 18:41:40 +01:00
|
|
|
PRIME = 998_244_353
|
|
|
|
|
2024-05-28 02:28:12 +01:00
|
|
|
if __name__ == '__main__':
|
2024-09-20 18:44:04 +01:00
|
|
|
N = 400000
|
|
|
|
M = 200000
|
|
|
|
print(N, M)
|
|
|
|
print('64 ' * N)
|
|
|
|
print(f'TOTIENT 1 {N} ' * M)
|