Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Untitled
Farz0l1x
Mar 5th, 2024
768
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
Python
0.19 KB
| None
|
0
0
raw
download
clone
embed
print
report
def
f
(
n
)
:
if
n
<
2
:
return
n
if
n
>=
2
:
return
f
(
n //
2
)
*
10
+ n %
2
for
n
in
range
(
1
,
10
**
20
)
:
if
f
(
n
)
==
100000100001000100101
:
print
(
n
)
break
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
TestingCustomCSS_Ignore
CSS | 3 hours ago | 0.21 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!