userInputData = input('키보드를 통해서 데이터를 입력하세요')
print(userInputData)





userInputData = int(input('입력'))
print(userInputData)
print(type(userInputData))
userInputData = float(input('입력'))
print(userInputData)
print(type(userInputData))



userInputData = input('오늘의 날씨는?')
print(userInputData)

예제 2)
userName = input('사용자 이름')
print(userName)
print(type(userName))

예제 3)
width = int(input('가로: '))
height = int(input('세로: '))
print(width * height)
print(width * height / 2)
