int test_mul32(int a,int b){
return a*b;
}
long long test_mul64(long long a,long long b){
return a*b;
}
float test_mul_single(float a,float b){
return a*b;
}
double test_mul_double(double a,double b){
return a*b;
}
int test_mul32(int a,int b){
return a*b;
}
long long test_mul64(long long a,long long b){
return a*b;
}
float test_mul_single(float a,float b){
return a*b;
}
double test_mul_double(double a,double b){
return a*b;
}