Skip to content

Instantly share code, notes, and snippets.

@modos
Created August 6, 2023 23:32
Show Gist options
  • Save modos/2a4bf4809e3a192c34457a09bc119b60 to your computer and use it in GitHub Desktop.
Save modos/2a4bf4809e3a192c34457a09bc119b60 to your computer and use it in GitHub Desktop.
کِوین و قدرت شالاپ
n = int(input())
if n % 2 == 0:
s = n**2 / ((n +1)*4)
else:
s = (n-1) / 4
print(s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment