#
# x = 100
# x = x + 500
# x, y = input().split()
#
# x = int(x)
# y = int(y)
#
# print(x)
# print(y)
# print(x+y)
# print(type(x))
#
# print('Hello World', end=' ')
# print('asdljsadlj')
# x = input()
# x = ord(x)
#
# print(x)
# print(type(x))
#
# x = x + 1
#
# x = chr(x)
# print(x)
# print('Hel
# print('Hello', end=' ')
# print('world')
# print('Hello')
# print('World')
# print('"C:\Download\\\'hello\'.py"')
# 정수: int
# 실수: float
# 아스키관련(A->65, 65->A): chr, ord
# x = input()
# print(x)
# x = int(input())
# print(x)
# x, y = input().split() #basic is space
# # x, y = input().split(',')
#
# x = int(x)
# y = int(y)
#
# print(x, y)
# x = input()
# y = int(input())
# # y = float(input())
#
# print(x, y)
codeup.kr
top of page

기능을 테스트하려면 라이브 사이트로 이동하세요.
20220309
20220309
댓글 0개
좋아요
댓글(0)
bottom of page