Task: | LumberUolevi |
Sender: | aalto2024a_012 |
Submission time: | 2024-09-04 16:25:47 +0300 |
Language: | C++ (C++11) |
Status: | COMPILE ERROR |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:8:21: error: expected ';' before 'return' 8 | std::cout << "0" | ^ | ; 9 | 10 | return 0; | ~~~~~~
Code
#include <iostream> int main() { int forest_size, number_of_trees; std::cin >> forest_size >> number_of_trees; std::cout << "0" return 0; }