#include<iostream> using namespace std; int main() { //int s=0; for(int i =0;i<=10;) { cout<<i<<endl; //s=s+i; i++; } //cout<<s<<endl; return 0; }