13 lines
177 B
Python
13 lines
177 B
Python
#!/usr/bin/env python3
|
|
# @author 轩辕龙儿
|
|
# @date 2022/10/25
|
|
# @file NP14.py
|
|
|
|
def solution():
|
|
s = input()
|
|
print(s * 100)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
solution()
|