When I read the solution file, it is read as:
‘#include\nusing namespace std;\nint main(){\n\twhile(true){\n\t\tint n;\n\t\tcin >> n;\n\t\tif(n==42)\n\t\t\treturn 0;\n\t\telse\n\t\t\tcout << n << endl;\n\t}\n\treturn 0;\n}’
Now, when I try to copy this in the editor area using send_keys( ), it does’nt work. I also tried doing the same using normal text and it works just fine.