#include<stdio.h>
void main()
{
int a,b,c;
a = 5;
b = 10; c = a*b;
printf("Multiplication of %d and %d is %d",a,b,c);
}