8 lines
114 B
C++
8 lines
114 B
C++
#include <string>
|
|
|
|
int main()
|
|
{
|
|
const std::string project = "fesa";
|
|
return project.size() == 4 ? 0 : 1;
|
|
}
|