1 2 3 4 5 6 7 8
#include <stdio.h> int main(void){ int a=10,b=10; scanf("%d %d",&a,&b); printf("%d\n",multiplication(a,b)); return 0; }