AcWing 605 简单乘积
Posted sweepy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AcWing 605 简单乘积相关的知识,希望对你有一定的参考价值。
AcWing 605 简单乘积
镜像1 http://suo.im/6lq36T
镜像2 http://suo.im/5JOX0d
镜像3 http://suo.im/6d9DO5
题面
读取两个整数值。
在此之后,计算它们的乘积并将结果存储在名为PROD的变量中。
输出结果如下例所示。
输入格式
共两行,每行包含一个整数。
输出格式
输出格式为“PROD = X
”,其中X为乘积结果。
数据范围
输入的两个整数的绝对值均不超过(10000)。
Input
3
9
Output
PROD = 27
题解
In C++/C
#include <iostream>
#include <math.h>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
cout<<"PROD="<<a*b<<endl;
return 0;
}
In Python 2
a = input()
b = input()
print "PROD=",a*b
以上是关于AcWing 605 简单乘积的主要内容,如果未能解决你的问题,请参考以下文章