You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
252 B

#include <iostream>
int empty_1();
int subdir_empty_1();
int subdir_empty_2();
int main()
{
int e1 = empty_1();
int se1 = subdir_empty_1();
int se2 = subdir_empty_2();
std::cout << e1 << " " << se1 << " " << se2 << std::endl;
return 0;
}