Created
April 17, 2018 09:56
-
-
Save onkar27/5b4a9d320309a9861544d24b818f54f7 to your computer and use it in GitHub Desktop.
This file contains 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
typedef long long ll; | |
inline fastRead() | |
{ | |
register char ch=0; | |
while (ch<33) ch=getchar(); | |
ll x=0; | |
while (ch>33) | |
{ | |
x=x*10+ch-'0'; | |
ch=getchar(); | |
} | |
return x; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment