1001 A+B Format
分数 20
Calculate a+b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less than four digits).
Input Specification:
Each input file contains one test case. Each case contains a pair of integers a and b where −106≤a,b≤106. The numbers are separated by a space.
Output Specification:
For each test case, you should output the sum of a and b in one line. The sum must be written in the standard format.
Sample Input:
-1000000 9
Sample Output:
-999,991
题意概述
计算 a+b 并以标准格式输出总和 —— 即,数字必须用逗号分隔成三位一组(除非少于四位数字)。
题解
因为标准格式是从个位数字开始,每三个为一组(这个是个坑 一开始看题没发现这个 从正着写只拿了14分),所以要将计算后的数转化为字符串,并且反着模拟
最后将结果再反着输出