Skip to content

Instantly share code, notes, and snippets.

View vicky002's full-sized avatar
🤷‍♂️
Keep building new stuff! 💸

Vikesh Tiwari vicky002

🤷‍♂️
Keep building new stuff! 💸
View GitHub Profile
# Install dependencies
#
# * checkinstall: package the .deb
# * libpcre3, libpcre3-dev: required for HTTP rewrite module
# * zlib1g zlib1g-dbg zlib1g-dev: required for HTTP gzip module
apt-get install checkinstall libpcre3 libpcre3-dev zlib1g zlib1g-dbg zlib1g-dev && \
mkdir -p ~/sources/ && \
# Compile against OpenSSL to enable NPN
@vicky002
vicky002 / SimpleSum4.cpp
Created March 16, 2015 14:01
Contest 1
#include <iostream>
#include <stdio.h>
using namespace std;
int main()
{
int n;
while ( scanf("%d",&n) != EOF )
{