A+B是没个JudgeOnline必备的试题,但是今天的A+B有些特别。A和B是以英文形式给出,请你求出A和B的和,并且要以英文形式输出。
整数在英文中的表示规则如下(仅仅是小于10^9的非负整数):数字abc,def,ghi 可以写成"[abc] million [def] thousand [ghi]"的形式。这里 "[xyz] " 表示英文中xyz 的写法。
在英文表示中如果abc = 0 ,则"[abc] million" 将被省略。同理若def = 0 或ghi = 0,则"[def] thousand" 或 "[ghi] " 将被省略。如果所有数都为0,则这个数值为0,写作"zero". 注意,"million"和 "thousand" 都是单数。
1000以下的数按照如下规则:数字xyz 应写成"[x] hundred and [yz] ”的格式。 (若yz = 0 那么只需要“[x] hundred”。否则如果y = 0 写成“[x] hundred and [z]”的形式)。如果x = 0,"[x] hundred and" 将被省略。"hundred" 也永远是单数。
20以下的数分别是 "zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen", "sixteen", "seventeen", "eighteen", 和 "nineteen"。 从20 到99 的数字,xy 写成 "[x0] [y] ", 其中可以被10整除的数写成 "twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty"和"ninety" 。
例如987,654,312 应写成"nine hundred and eighty seven million six hundred and fifty four thousand three hundred and twelve", 100,000,037 应写成 "one hundred million thirty seven", 1,000写成 "one thousand".