c语言问题,请教各位程序员

img

这题一共就五行代码,输入已经给你了,你写个变量声明,写个乘,写个输出就结束了
语言要自己上手写,实在不行直接百度也可

int a, b, c;
scanf("%d %d", &a, &b);
c=a*b;
printf("%d", c);

如下:

#include <stdio.h>
int main()
{
    int a,b,s;
    scanf("%d %d",&a,&b);
    s = a*b;
    printf("%d",s);
    return 0;
}