#include <iostream> using namespace std; int main() { int num = 0; while(num++ < 3) { cout << num << " "; } return 0; }
2
3
4
5