Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 206 Bytes

fast-io.md

File metadata and controls

17 lines (13 loc) · 206 Bytes

Fast IO

Code

auto r = 0;
auto c = getchar_unlocked();
while (c < '0') c = getchar_unlocked();
while (c >= '0') {
	r = r * 10 + c - '0';
	c = getchar_unlocked();
}

Problems

Sources