CodeUp 1037-10진 정수 1개를 입력받아 아스키 문자로 출력해보자.단, 0 ~ 255 범위의 정수만 입력된다.

resilient

·

2020. 6. 15. 17:10

728x90
반응형

a=int(input())
print(chr(a))

반응형