summaryrefslogtreecommitdiff
path: root/content/other/fastIO.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'content/other/fastIO.cpp')
-rw-r--r--content/other/fastIO.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/other/fastIO.cpp b/content/other/fastIO.cpp
index 9badcc7..09473f4 100644
--- a/content/other/fastIO.cpp
+++ b/content/other/fastIO.cpp
@@ -16,7 +16,7 @@ void printPositive(int n) {
}
void fastprint(int n) {
- if(n == 0) {putchar('0'); return;}
+ if(n == 0) { putchar('0'); return; }
if (n < 0) {
putchar('-');
printPositive(-n);