HR30 Day 1: Data Types/Python

개요[ | ]

i = 4
d = 4.0
s = 'HackerRank '
i2 = int(input())
d2 = float(input())
s2 = input()

print( i + i2 )
print( d + d2 )
print( s + s2 )
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}