题解 | #网页的生成#
网页的生成
https://www.nowcoder.com/practice/eafb4afa3d504fcaadf313bdd4b90148
def expand(h):
return h*2
h1,h2=map(int,input().split())
ret1=expand(h1)
print(ret1)
ret2=expand(h2)
print(ret2)
网页的生成
https://www.nowcoder.com/practice/eafb4afa3d504fcaadf313bdd4b90148
def expand(h):
return h*2
h1,h2=map(int,input().split())
ret1=expand(h1)
print(ret1)
ret2=expand(h2)
print(ret2)
相关推荐