Skip to content

Instantly share code, notes, and snippets.

@onkar27
Created April 17, 2018 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onkar27/5b4a9d320309a9861544d24b818f54f7 to your computer and use it in GitHub Desktop.
Save onkar27/5b4a9d320309a9861544d24b818f54f7 to your computer and use it in GitHub Desktop.
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