For a given string you should remove all HTML tags from it. An HTML tag starts with the symbol "<" and ends with the symbol ">".
You should output the string without HTML tags.
For a given string you should remove all HTML tags from it. An HTML tag starts with the symbol "<" and ends with the symbol ">".
You should output the string without HTML tags.
Sample Input 1:
<h1>Simple header</h1>Sample Output 1:
Simple headerSample Input 2:
<h2>Header with <b>bold</b> text</h2>Sample Output 2:
Header with bold textCreate a free account to access the full topic