18 lines
267 B
Python
18 lines
267 B
Python
#!/usr/bin/env python3
|
|
# @author 轩辕龙儿
|
|
# @date 2022/10/25
|
|
# @file NP4.py
|
|
|
|
def solution():
|
|
s1 = "Hello World!"
|
|
s2 = "Hello Nowcoder!"
|
|
print(s1)
|
|
print(s2)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
solution()
|
|
num = int(input())
|
|
print(num)
|
|
print(type(num))
|