# -*- coding:utf-8 -*-
a,b = [int(x) for x in input().split(' ')]
#对输入的内容进行空格分割
print(a + b)
x = [2,3,4,6]
for i in x:
print(i)
本文标题:Python 推导式
本文链接:https://www.haomeiwen.com/subject/exjdpxtx.html
网友评论