You will need to make a new file called "person.h" and copy paste those contents into it. I usually put my own header files into the project's own folder.
If you then go to compile your project and get an error about not finding person.h, you need to go and tell the compiler where to search for that header file. Depending on what IDE (or other thing) you're using, doing this will have a different exact answer.
Your code would benefit from proper indentation. It might not seem important now, but when your files become bigger, it's much easier for you and others to find errors if the code is properly indented.
You might also want to fix the error 'adress' in your code. Correct spelling is 'address'. Misspellings like that can cause problems in future.