#2612: ans


1750281-0@g.puiching.edu.mo (P6A29廖梓新)

School : No School
ID : 3268
IP address : [192.168.120.33]
Last Login :
2025-10-17 15:45:04
a056. 累加數字 | From: [192.168.120.33] | Post Date : 2025-06-16 08:49

a, b, c = map(int, input().split())

print(a+b+c)

 
#2618: Re:ans


1752786-4@g.puiching.edu.mo (P6A08林敬晉)

School : Pui Ching Middle School
ID : 3260
IP address : [192.168.120.33]
Last Login :
2025-11-07 14:53:54
a056. 累加數字 | From: [192.168.120.33] | Post Date : 2025-06-16 17:21

a, b, c = map(int, input().split())

print(a+b+c)


or

 

a = list(map(int,input().split()))

print(sum(a))

 
ZeroJudge Forum