Skip to content

Instantly share code, notes, and snippets.

@dhirabayashi
Created July 21, 2019 11:38
Show Gist options
  • Save dhirabayashi/1e4a6955ef600c045e8211f89b7c47bf to your computer and use it in GitHub Desktop.
Save dhirabayashi/1e4a6955ef600c045e8211f89b7c47bf to your computer and use it in GitHub Desktop.
#include <iostream>
#define rep(i, n) for(int i = 0; i < (n); ++i)
using namespace std;
int main(void){
int n;
cin >> n;
rep(i, n) {
cout << i << endl;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment