This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
# For getting input from input.txt file | |
sys.stdin = open('a+b.in', 'r') | |
# Printing the Output to output.txt file | |
sys.stdout = open('a+b.out', 'w') | |
print(sum(map(int, input().split()))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__hint__: | |
- ~ All keys starting with _ will be ignored | |
- ~ Entries named like [foo], [foo].[bar] [foo].[baz] | |
- will be merged into one category. | |
- ~ A entry named [foo].[bar] will inhert all options | |
- defined in entry [foo] if not overwritten | |
- ~ code_file option defaults to foo.[name] | |
- ~ highlight option defaults to [name] | |
- ~ if highlight option was set, monaco option defaults | |
- to [highlight], otherwise defaults to [name] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Compiling libav on windows | |
# -------------------------- | |
# Compiling libav takes quite a bit of time and you need to setup a build | |
# environment. I've followed these instructions for ffmpeg: | |
# http://blogs.gnome.org/rbultje/2012/09/27/microsoft-visual-studio-support-in-ffmpeg-and-libav/ | |
# | |
# How to | |
# ------ |