this is a test file (same content with 1.md)

```cpp nolint
for (int i=1;i<100;i++) {
cout << "lets go" << endl;
}
```

```python
for i in range(100):
    print("hello")
```
