mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
17 lines
284 B
C++
17 lines
284 B
C++
|
#include <iostream>
|
||
|
|
||
|
using std::cin;
|
||
|
using std::cout;
|
||
|
const char endl = '\n';
|
||
|
|
||
|
int main() {
|
||
|
std::ios::sync_with_stdio(false);
|
||
|
cin.tie(nullptr);
|
||
|
|
||
|
cout << "I'm gonna WIN!" << endl;
|
||
|
cout << "I'm gonna WIN!" << endl;
|
||
|
cout << "I'm gonna WIN!" << endl;
|
||
|
|
||
|
return 0;
|
||
|
}
|