#C144. Fetch Wikipedia Page
Fetch Wikipedia Page
Fetch Wikipedia Page
Your task is to simulate fetching the HTML content of the Wikipedia page for Albert Einstein by printing a predefined HTML string. Originally, one might fetch the page with a custom User-Agent header to mimic a web browser; however, for the purpose of this problem you will simply output the fixed HTML content.
The output must contain the substring <html
and must include the title tag <title>Albert Einstein - Wikipedia</title>
. Your program should read one line from standard input (which is ignored) and then print the exact HTML content.
Note: The HTML string to be printed is:
Albert Einstein - WikipediaSimulated Content
inputFormat
The input consists of a single line that can be ignored. It is only provided to satisfy the standard input requirement.
outputFormat
Print exactly the following HTML content to standard output:
Albert Einstein - WikipediaSimulated Content## sample
dummy
Albert Einstein - WikipediaSimulated Content