Convert Codechef Questions into PDF format

If you want questions in PDF format then, here is java-script code to convert any question of codechef in pdf format.
*Note: The question format must be old format, There is a option next to tags of questions to change to old problem page or use this [link](https://www.codechef.com/problems-old/XYTREE) to see.

  1. open question in old format
  2. open dev tools on your browser, F12 on google chrome
    3.under console paste the following code
document.querySelectorAll('a').forEach(el => el.remove())
var hh = document.getElementById('ember-root').children[0].children[2].children[0].children[1].children[0].children[0].children[0].innerHTML
var header_string = ""
for (var i = 1; i < hh.length; i++) {
    if (hh.charAt(i) == '\n') break;
    header_string = header_string + hh.charAt(i);
}
var v1 = document.getElementById('ember-root').children[0].children[2].children[0].children[2].children[0]
var arr = v1.getElementsByClassName("MathJax")
for (var i = 0; i < arr.length; i++) {
    arr[i].style.fontSize = "0.7em";
}
v1.removeChild(v1.children[v1.childElementCount - 2])
document.body.innerHTML = '<h1>' + header_string + '</h1>' + v1.innerHTML
window.print()