 and
  and   both have a common denominator, so you can combine them into a single fraction:
 both have a common denominator, so you can combine them into a single fraction:

You cannot simplify this fraction further:
- - - - - - - - - - - - - - - - - - - -
Answer:

- - - - - - - - - - - - - - - - - - - - -
 
        
             
        
        
        
Do you love Selena Quintanilla?
        
             
        
        
        
Option C is correct. 
try multiplying it out yourself. It should work
        
                    
             
        
        
        
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion 
// Comments are used for explanatory purpose
#include <bits/stdc++.h> 
using namespace std; 
// add10 recursive function to perform arithmetic operations 
int add10(int m, int n) 
{
return (m + product(n, 10)); //Result of m + n * 10
 return 0; 
} 
 
// Main Methods Starts here
int main() 
{ 
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
 return 0;
} 
 
        
             
        
        
        
Answer:
I'm not entirely sure what the question is but every thing under 12.5 is closer to 12, everything 12.5 and upwards like 12.87 would be closer to 13