#include <iostream>
using namespace std;
int main()
{
int counter;
counter=0;
while (counter<=20);
{
cout<<counter+1<<" ";
counter++;
}
using namespace std;
int main()
{
int counter;
counter=0;
while (counter<=20);
{
cout<<counter+1<<" ";
counter++;
}