#include <iostream.h> using namespace std; int main () { // for loop execution for( int a = 10; a < 15; a = a + 1 ) { cout << "aimtocode Roll No : " << a << endl; } return 0; }