From 2f5c811e51f0ec8d59a351d54f01e6cbe4cdc0f4 Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Tue, 16 Nov 2021 12:34:41 -0600 Subject: [PATCH] Remove semicolon to test bad compilation --- usaco/Teleportation/index.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/usaco/Teleportation/index.cpp b/usaco/Teleportation/index.cpp index 001895e..7d59083 100644 --- a/usaco/Teleportation/index.cpp +++ b/usaco/Teleportation/index.cpp @@ -2,8 +2,7 @@ int a, b, x, y; int main() { - std::cin >> a >> b >> x >> y; - int path1; + std::cin >> a >> b >> x >> y int path1; int path2; int path3; int ans;