Browse Source

Fix missing semicolon

square-pasture
Abheek Dhawan 3 years ago
parent
commit
45b4593a15
  1. 3
      usaco/Teleportation/index.cpp

3
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;

Loading…
Cancel
Save