简单乘积

This commit is contained in:
flykhan 2023-03-30 15:12:14 +08:00
parent b5eca043a5
commit d54496f0d7
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#include <cstdio>
int main()
{
int a, b;
scanf("%d%d", &a, &b);
printf("PROD = %d\n", a * b);
return 0;
}