From 45b4593a1588971018597995d0e38a7defcd5c8d Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Tue, 16 Nov 2021 12:35:25 -0600 Subject: [PATCH] Fix missing semicolon --- usaco/Teleportation/index.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usaco/Teleportation/index.cpp b/usaco/Teleportation/index.cpp index 7d59083..001895e 100644 --- a/usaco/Teleportation/index.cpp +++ b/usaco/Teleportation/index.cpp @@ -2,7 +2,8 @@ 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;