a*b
Time Limit: 1 Sec Memory Limit: 128 MB
Description
按照a*b=的格式输入算式,通过计算输出a*b的结果。
Input
输入中包括一个表达式,如:a*b= a和b都是int类型的正整数。
Output
结果只有一个正整数,整数在long long范围内。
Sample Input
100*200=
Sample Output
20000
HINT
Source
#include<iostream> using namespace std; main() { long long a,b; scanf("%lld*%lld=",&a,&b); printf("%lld\n",a*b); }
转载请注明出处,谢谢.Q_Q