#include <iostream>

using namespace std;
int main()
{ 
	char x,t='a';  //초기값
	cin >> x; //입력값
	do
	{
		cout << t;
		t += 1; // t=t+1  
	
	} while (t<=x);  //입력한 문자
	  

    return 0;
 
}

'개발 공부 > code up 문제' 카테고리의 다른 글

1081번문제  (0) 2023.07.21
1080 기초문제  (0) 2023.07.21
1079  (0) 2023.07.21
코드업기초 1077  (0) 2023.07.20
1078 코드업  (0) 2023.07.20