题解 | 【模板】牛牛学乘法
【模板】牛牛学乘法
https://www.nowcoder.com/practice/34542aa2826d41b8be6eaeefb9881da7
#include <iostream>
using namespace std;
int main() {
int a, b;
scanf("%d%d", &a, &b);
printf("%d", a * b);
}
【模板】牛牛学乘法
https://www.nowcoder.com/practice/34542aa2826d41b8be6eaeefb9881da7
#include <iostream>
using namespace std;
int main() {
int a, b;
scanf("%d%d", &a, &b);
printf("%d", a * b);
}
相关推荐