#include int Abc(int a, int b, int c) { return a*b*c; } void main(void) { cout << Abc(2,3,4) << endl; }