这是一道非常变态的题,虽然只排在1002号,但无数人都载在了这道题上
题目如下:
A+B+C

--------------------------------------------------------------------------------

Time limit: 3sec. Submitted: 12573 
Memory limit: 32M Accepted: 2208 

Source : Unknown

--------------------------------------------------------------------------------

For each pair of integers A B and C ( -2^31 <= A, B, C<= 2^31-1 ), Output the result of A+B+C on a single line. 

Sample Input 
1 2 3
3 4 3

Sample Output 
6
10

提示 请注意32位机上int的表示范围。  
-----------------------------------
用C++我已经通过了
但是用java怎么写呢? 请高手指教
(http://acm.hit.edu.cn 的1002题)