Long23042013's blog

By Long23042013, history, 3 weeks ago, In English

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
;
}

Full text and comments »

  • Vote: I like it
  • -9
  • Vote: I do not like it