ok i just started learning c++ (with q basic background) and i was working on a program when i go to compile it there is an error and it stops here is the code can someone point out my problem? i am using microsoft visual c++

#include <iostream.h>

int main ()

{
int number,
int name,

cout<<"Hey hey enter a number please!";
cin>>number;
cout<<"Is this your number?">>number;

return 0;
}

(yeah its from the tutorial)