Skip to content
View aximov's full-sized avatar
🐈
🐈

Organizations

@legalscape

Block or report aximov

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
aximov/README.md

⚡ TypeScript/JavaScript/Python/C++

maker of tokura.app

Pinned Loading

  1. procon.py procon.py
    1
    # input
    2
    a = input() # str
    3
    a = int(input()) # int 
    4
    a = list(input().split()) # list of str
    5
    a = list(map(int, input().split())) # list of int