#include using namespace std; int main() { for(int i=1;i<=20;i++) { if(i==10) { cout << i << endl; break; } } cout << "done" << endl; return 0; }