Computer Science, asked by gaurtradersdl, 3 days ago

write a program to accept two numbers and display multiplication result. ​

Answers

Answered by krsnahare25
0

Answer:

a = int(input())

b = int(input())

print(a*b)

Answered by coolcaptain008
0

Answer:

Explanation:

c program

#include<stdio.h>

int main()

{

int a,b,result=0;

scanf("%d%d",&a,&b);

result=a*b;

printf("%d",result);

}

Similar questions