I somehow turned this:
#include <bits/stdc++.h>
using namespace std;
int main() {
cout<<"Hello";
return 0;
}
into this:
#include <iostream>
using
namespace
std;
int
main
()
{
cout
<<
"Hello";
return
0;
}
end into this:
#\
i\
n\
c\
l\
u\
d\
e\
<\
i\
o\
s\
t\
r\
e\
a\
m\
>
u\
s\
i\
n\
g
n\
a\
m\
e\
s\
p\
a\
c\
e
s\
t\
d
;
i\
n\
t
m\
a\
i\
n\
(
)
{
c\
o\
u\
t
<\
<
"\
H\
e\
l\
l\
o\
"
;
r\
e\
t\
u\
r\
n
0
;
}



