#include <iostream>

struct impress_page {

  void show_info () {
    std::cout << "Responsible for the content:\n"
                 "\n"
                 "Dipl. Ing. (FH) Armin Rothfuss\n"
                 "Riedlinger Str. 8\n"
                 "70327 Stuttgart\n"
                 "\n"
                 "Telefon: +49-711/9183444\n"
                 "Telefax: +49-711/9183445\n"
                 "Mobil:   +49-160/7586476\n"
                 "\n"
                 "eMail: info@rothfuss-web.de"
              << std::endl;

    std::cout << "Liability notice\n"
                 "\n"
                 "Despite careful control of the contents, we do not "
                 "assume any liability for the contents of external links.\n"
                 "The operators of the linked pages are solely "
                 "responsible for their content."
              << std::endl;

  }

};