#include void f(int a, int b) { printf("%d", a * b); } int main() { int a, b; scanf("%d %d", &a, &b); f(a, b); return 0; }