Skip to content

Instantly share code, notes, and snippets.

View aximov's full-sized avatar
🐹

Nakayama Daichi aximov

🐹
View GitHub Profile
@aximov
aximov / procon.py
Last active January 14, 2024 14:08
# input
a = input() # str
a = int(input()) # int
a = list(input().split()) # list of str
a = list(map(int, input().split())) # list of int
n, m = list(map(int, input().split())) # pair of int
# output
print(a) # str, int
print(a, b) # multiple