L1-036. A乘以B

题目地址:https://www.patest.cn/contests/gplt/L1-036

思路:简单

注意点:无

1 #include<stdio.h>
2 int main(){
3     int a,b;
4     scanf("%d %d",&a,&b);
5     printf("%d\n",a*b);
6     return 0;
7 }

 

posted @ 2018-01-18 20:15  爱你的笑  阅读(153)  评论(0编辑  收藏  举报