资 源 简 介
题目要求:读入两个小于100的正整数A和B,计算A+B。
需要注意的是:A和B的每一位数字由对应的英文单词给出。
输入格式:测试输入包含若干测试用例,每个测试用例占一行,格式为"A + B =",相邻两字符串有一个空格间隔。当A和B同时为0时输入结束,相应的结果不要输出。
输出格式:对每个测试用例输出1行,即A+B的值。
输入样例:
one + two =
three four + five six =
zero seven + eight nine =
zero + zero =
输出样例:
3
90
96-Title request: read two positive integer less than 100 of the A and B, calculate A+ B. It should be noted that: A and B each of the figures by the corresponding English words are given. Input format: test input contains a number of test cases, test cases for each line, the format for the " A+ B =" , a string of adjacent spaces in the two intervals. When A and B at the same time 0:00 to the end of input, not output the results of the corresponding. Output Format: For each test case output a line, that is, the value of A+ B. Input sample: one+ two = three four+ five six = zero seven+ eight nine = zero+ zero = output sample: 39,096