Skip to main content

fast I/O

·18 words·1 min
note cp C++
Table of Contents

to speed up cin and cout, add the following lines.

ios_base::sync_with_stdio(false);
cin.tie(nullptr);

references
#

Fast Input & Output