HackerRank Challenge

python HackerRank Challenge 1일차
def solveMeFirst(a,b): return a+b # Hint: Type return a+b below num1 = int(input()) num2 = int(input()) res = solveMeFirst(num1,num2) print(res) num1과 num2를 각각 입력받아서 더해주는 프로그램을 만드는 것이다. 그대로 써주고 Run 하면 이렇게 입력할 수 있는 칸이 생긴다. 2쓰고 enter 3쓰고 enter 하면 5가 출력된다.