# print("Hello World")
# a= input() # input data를 a에 넣으세요
# a = int(a) # a를 int로 바꿔서 a에 다시 넣으세요
# print(a)
# f=input()
# f=float(f)
# print(f)
# a=input()
# b=input()
# a=int(a)
# b=int(b)
# print(a)
# print(b)
a=float
a=input()
print(a)
print(a)
print(a)
top of page

실제 작동 상태를 확인하려면 라이브 사이트로 이동하세요.
20250311 365일 Yes or nooooooo is not
20250311 365일 Yes or nooooooo is not
댓글 1개
좋아요
댓글(1)
bottom of page
# 두 개의 데이터 입력 # # 엔터로 구분해서 입력받고 싶을때 # a = input() # a = "4 3" # b = input() # b = "4" # # # 공백으로 구분해서 입력받고 싶을 때 # a, b = input().split() # # print(a) # print(b) # # print(a+b) # a에는 hello # b에는 world를 입력받기 # 1. # hello # world # 로 입력될때 # a = input() # 한 줄 입력받을게요 # b = input() # 한 줄 입력받을게요 # print(a) # print(b) # 2. hello world 한 줄로 입력 될때 # a,b = input().split(' ') # 한줄에 입력 받은걸 ' '를 기준으로 잘라서 a와 b에 순서대로 넣을게요 # print(a) # print(b)