battledev/cheatsheet.py
2019-11-26 17:30:52 +01:00

14 lines
222 B
Python

def get_line():
variable = input()
def get_line_as_list():
variable = input().split(" ")
def get_line_as_int():
variable = int(input())
def get_line_as_ints():
variable = map(int, input().split(" "))