Skip to content

Instantly share code, notes, and snippets.

@monhime
Created September 26, 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/f0b05ae3b64321e1ee19fb9dc61060ec to your computer and use it in GitHub Desktop.
Save monhime/f0b05ae3b64321e1ee19fb9dc61060ec to your computer and use it in GitHub Desktop.
ALCBC A問題 解答
import sys
def input(): return sys.stdin.readline().rstrip()
def main():
k = int(input())
ans = ""
for i in range(k):
ans += "ACL"
print(ans)
if __name__=='__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment