Skip to content

Instantly share code, notes, and snippets.

@monhime
Created September 13, 2020 22:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monhime/ce92b3abeabaf92df51d8947e128ef3a to your computer and use it in GitHub Desktop.
Save monhime/ce92b3abeabaf92df51d8947e128ef3a to your computer and use it in GitHub Desktop.
ABC178 A問題 解答
import sys
def input(): return sys.stdin.readline().rstrip()
def main():
x = int(input())
if x == 0:
print(1)
else:
print(0)
if __name__=='__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment