Quick actions

cmd+k|ctrl+k

Navigation

Languages

for_examp_new

Snippet info

Language

Cpp

Visibility

public

Author

zvat.333333

Created

2021-02-18T08:16:57Z

Updated

2021-02-18T08:25:11Z

#include <iostream>
using namespace std;

int main() {
    for(int i = 0; i <= 100; i++){
        cout << i << endl; 
    }
}
INFO