this is a test file

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

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