• Home
  • About
    • changsoooooo's Blog photo

      changsoooooo's Blog

      changsoooooo's Blog.

    • Learn More
    • Twitter
    • Facebook
    • Instagram
    • Github
    • Steam
  • 일상
  • 교육
    • 교육학
    • 정보 컴퓨터 교육
    • 임용
  • 개발
  • 잡지식
  • 한국사
  • Projects

10093(숫자)

08 Nov 2020

Reading time ~1 minute

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <math.h>
//숫자 10093
using namespace std;
int main(){
	ios::sync_with_stdio(0); 
	cin.tie(0);
	
	long long int a, b;
	cin >> a >> b;
	if (a>b)
	{
		long long int temp;
		temp = a;
		a = b;
		b = temp;
	}
	if (a==b)
	{
		cout << "0" << '\n';
	}
	else
	{
		cout << b - a - 1 << '\n';

	}
	for (long long int i = a+1; i < b; i++)
	{
		cout << i << ' ';
	}
}


Share Tweet +1