Is there any way to break this without if/else conditionals for each layer?
#include <iostream>
using namespace std;
int main()
{
    for (int i = 0; i < 20; i++)
    {
        while (true) 
        { 
            while (true) 
            { 
                break; break; break; 
            } 
        }
    }
    
    cout << "END";
    return 0;
}
 
     
     
    