Skip to content

Instantly share code, notes, and snippets.

@quachngocxuan
quachngocxuan / learnenough-python.md
Last active August 4, 2019 14:41
Learn enough to be dangerous - Python

Learn enough to be dangerous - Python

Input

s = input()
n = int(input())
integer_list = map(int, input().split())
n = int(raw_input())
integer_list = map(int, raw_input().split())