Skip to content

Instantly share code, notes, and snippets.

@monhime
Last active April 13, 2020 03:11
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/5fb6f0cdfd5db9fb02c37ea023653481 to your computer and use it in GitHub Desktop.
Save monhime/5fb6f0cdfd5db9fb02c37ea023653481 to your computer and use it in GitHub Desktop.
ABC162 A問題 解答
import sys
def input(): return sys.stdin.readline().rstrip()
def main():
n=input()
if '7' in n:print("Yes")
else: print("No")
if __name__=='__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment