Skip to content

Commit 55ce482

Browse files
committed
feat: 添加提取数字电话的算法实现
1 parent b5583f3 commit 55ce482

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)