COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
test.cpp
Go to the documentation of this file.
1#include <iostream>
2using namespace std;
3
4int main(){
5 int input;
6 while (cin >> input) {
7 cout << input << endl;
8 }
9}
int main()
Definition test.cpp:4