I have no idea why this is not giving me any numbers.
It is supposed to be reading x=__ y=___ but instead it is only giving me my first cout .

Code:
//Imani Jones' Output of Her First Program
#include <iostream>
#include <cmath> 
using namespace std;
int main () 
{
    cout<<"My name is Imani Jones and this is the output of my first program."<<endl<<endl;
...