← Back to List

2742번: 기찍 N ↗

Solutions

C++14
115 B | 115 chars
#include <iostream>
using namespace std;
int main()
{
	int n;
	cin>>n;
	for(int x=n; x>0; x--) printf("%d\n",x); 
}