#include <iostream>
using namespace std;
int main()
{
int num;
for (num = 1; num<6; num++)
cout<<num;
}
return 0;
Comments
Post a Comment