python 实现加法

https://ac.nowcoder.com/acm/contest/338/G

 

链接:https://ac.nowcoder.com/acm/contest/338/G
来源:牛客网

题目描述

This is a very simple problem! Your only job is to calculate a + b + c + d!

输入描述:

There are several cases.

In the first line, there is a single integer T.(T <= 200)

In the next T lines, each line contains four integers a, b, c and d(-2^61 <= a,b,c,d <=2^61)

输出描述:

output T lines.

Each line output one integer represent the answer of a + b + c + d
示例1

输入

复制
1
1 2 3 4

输出

复制
10

不换行
n=int(input())
for i in range(n):
        a,b,c,d = map(int,input().split())
        print(a+b+c+d)
    

 

 

换行

 

n=int(input())
for i in range(n):
    m=int(input())
    a=int(input())
    b=int(input())
    c=int(input())
    print(m+a+b+c)

 

多组输入

 

while True:
    try:
        print sum(map(int,raw_input().split()))
    except:
        break

 

转载于:https://www.cnblogs.com/DWVictor/p/10228783.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值