res=""
while (( $res=="" ))
do
    clear
    #python3 -m creat.py
    #g++ std.cpp -o std && std
    #g++ my.cpp -o my && my
    #res=diff std.txt my.txt
    res=diff get_pip.py co.py
done

setting

{
    "python.linting.enabled": true,
    "python.formatting.provider": "yapf",
    "python.formatting.yapfArgs": [],
    "python.linting.flake8Enabled": false,
    "python.linting.pylintEnabled": true,
    "workbench.colorTheme": "One Dark Pro",
    "workbench.colorCustomizations": {
        "editor.background": "#161616",
            "statusBar.background": "#06030f",
            "statusBar.foreground": "#b1b1b1",
        "menu.background": "#ff0000",
        "titleBar.activeBackground": "#ff0000"
    },
    "files.associations": {
        "*.tcc": "cpp",
        "cmath": "cpp",
        "ratio": "cpp",
        "chrono": "cpp",
        "bitset": "cpp",
        "random": "cpp",
        "ostream": "cpp"
    },
}

root

{
    "files.autoGuessEncoding": true,
    "code-runner.runInTerminal": true,
    "C_Cpp.clang_format_fallbackStyle": "{BasedOnStyle: Google , IndentWidth : 4}",
    "C_Cpp.clang_format_style": "{BasedOnStyle: Google , IndentWidth : 4}",
    "code-runner.executorMap": {

        "javascript": "node",
        "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
        "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "php": "php",
        "python": "python3 -u",
        "perl": "perl",
        "perl6": "perl6",
        "ruby": "ruby",
        "go": "go run",
        "lua": "lua",
        "groovy": "groovy",
        "powershell": "powershell -ExecutionPolicy ByPass -File",
        "bat": "cmd /c",
        "shellscript": "bash",
        "fsharp": "fsi",
        "csharp": "scriptcs",
        "vbscript": "cscript //Nologo",
        "typescript": "ts-node",
        "coffeescript": "coffee",
        "scala": "scala",
        "swift": "swift",
        "julia": "julia",
        "crystal": "crystal",
        "ocaml": "ocaml",
        "r": "Rscript",
        "applescript": "osascript",
        "clojure": "lein exec",
        "haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt",
        "rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt",
        "racket": "racket",
        "scheme": "csi -script",
        "ahk": "autohotkey",
        "autoit": "autoit3",
        "dart": "dart",
        "pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt",
        "d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt",
        "haskell": "runhaskell",
        "nim": "nim compile --verbosity:0 --hints:off --run",
        "lisp": "sbcl --script",
        "kit": "kitc --run",
        "v": "v run",
        "sass": "sass --style expanded",
        "scss": "scss --style expanded",
        "less": "cd $dir && lessc $fileName $fileNameWithoutExt.css",
        "FortranFreeForm": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "fortran-modern": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "fortran_fixed-form": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "fortran": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
    },
    "explorer.confirmDelete": false,
    "editor.minimap.enabled": false,
    "workbench.sideBar.location": "left",
    "workbench.activityBar.visible": true,
    "editor.renderControlCharacters": true,
    "workbench.iconTheme": "vscode-icons",
    "editor.fontFamily": "'Droid Sans Mono','SF mono',hack, 'monaco', monospace, 'Droid Sans Fallback'",
    "editor.fontSize": 18,
    "editor.fontLigatures": true,
    "python.pythonPath": "/usr/bin/python3",
    "workbench.colorTheme": "One Dark Pro",
    "window.menuBarVisibility": "compact",
    "workbench.editorAssociations": [
        {
            "viewType": "jupyter.notebook.ipynb",
            "filenamePattern": "*.ipynb"
        }
    ],
    "C_Cpp.updateChannel": "Insiders",

}