Compile Error
You need to write a C++ code that typedefine a class "multiply" with a function "mult(int a,int b)" which prints the multiplication of a ( < 10000 ) and b ( < 10000 ). There is no need of including library files. There is no need of declaring a main() function too.
You are not allowed to use struct in your code
note: Your code will be tested using the main defined by the judge. So do not include main in your program
Input Specification
No InputConstraints
There are no whitespaces allowed in the code.There are no '/' allowed in the code.
There are no '#define' allowed in the code.
Time limit: 5s Memory Limit: 32MB
Sample judge
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<string>
using namespace std;
//Your solution
int main()
{
//Judge program
}
Scoring
200 If the code satisfies the above criteria.
#include<cstdio>
#include<cstdlib>
#include<string>
using namespace std;
//Your solution
int main()
{
//Judge program
}