CPP_Basics_Syntax/第一讲 变量、输入输出、表达式与顺序语句/605.cpp

10 lines
123 B
C++
Raw Permalink Normal View History

2023-03-30 15:12:14 +08:00
#include <cstdio>
int main()
{
int a, b;
scanf("%d%d", &a, &b);
printf("PROD = %d\n", a * b);
return 0;
}