Take a look at this C++ submission 199864568:
#import <bits/stdc++.h>
using namespace std;
int main()
{
int a;
cin >> a;
cout << ((a%2==0 && a>2) ? "YES" : "NO");
}

Don't see it?
Spoilers
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3857 |
| 2 | jiangly | 3810 |
| 3 | maroonrk | 3534 |
| 4 | tourist | 3528 |
| 5 | Kevin114514 | 3510 |
| 6 | turmax | 3411 |
| 7 | Um_nik | 3387 |
| 8 | Radewoosh | 3367 |
| 9 | heuristica | 3322 |
| 10 | strapple | 3317 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 157 |
| 2 | maspy | 150 |
| 3 | Um_nik | 145 |
| 4 | Errichto | 139 |
| 5 | adamant | 136 |
| 6 | maroonrk | 134 |
| 7 | DNR | 133 |
| 7 | nik_exists | 133 |
| 9 | AmShZ | 130 |
| 10 | Dominater069 | 129 |
I don't know how I've never seen this C++ feature before
Take a look at this C++ submission 199864568:
#import <bits/stdc++.h>
using namespace std;
int main()
{
int a;
cin >> a;
cout << ((a%2==0 && a>2) ? "YES" : "NO");
}

Take a closer look at the code =P
Look even closer.
Read the first line.
The first line uses #import instead of the usual #include.
The other day, I was coding some C++. My Pythonic muscle memory caused me to accedently write #import instead of #include, and to my great surprise, the code still compiled!
The only information that I was able to find about #import is from this stackoverflow comment. As I understand it, #import is a really old gcc feature that combines #include and #pragma once into one.
There are arguably some other positives to using #import instead of #include. #import is one character shorter than #include, and as someone that mainly uses Python, it is easier for me to remember import than include.
| Rev. | Lang. | By | When | Δ | Comment | |
|---|---|---|---|---|---|---|
| en3 |
|
pajenegod | 2023-03-31 17:31:44 | 1 | Tiny change: ' and `#prama once` i' -> ' and `#pragma once` i' | |
| en2 |
|
pajenegod | 2023-03-30 23:21:38 | 20 | Tiny change: 'oser look =P\n\n<sp' -> 'oser look at the code =P\n\n<sp' | |
| en1 |
|
pajenegod | 2023-03-30 23:20:17 | 1409 | Initial revision (published) |
| Name |
|---|


