We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5583f3 commit 55ce482Copy full SHA for 55ce482
1 file changed
niuke/problems/牛客题霸-python入门到实践四十招/NP102.提取数字电话.py
@@ -0,0 +1,15 @@
1
+# @nc app=nowcoder id=6e25b95632e6433db4b5053f91138cb5 topic=314 question=10060019 lang=Python3
2
+# 2026-04-27 23:07:03
3
+# https://www.nowcoder.com/practice/6e25b95632e6433db4b5053f91138cb5?tpId=314&tqId=10060019
4
+# [NP102] 提取数字电话
5
+
6
+# @nc code=start
7
8
+import sys
9
10
+for line in sys.stdin:
11
+ a = line.split()
12
+ print(int(a[0]) + int(a[1]))
13
14
15
+# @nc code=end
0 commit comments