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