Submission #680474

#TimeUsernameProblemLanguageResultExecution timeMemory
680474aabbfc21Catfish Farm (IOI22_fish)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; int main() { int n, m; long long sum = 0; cin >> n >> m; for (int i = 0; i < m; i++) { int x, y, z; cin >> x >> y >> z; sum += z; } cout << z << "\n"; }

Compilation message (stderr)

fish.cpp: In function 'int main()':
fish.cpp:14:13: error: 'z' was not declared in this scope
   14 |     cout << z << "\n";
      |             ^