로딩
요청 처리 중입니다...

해커랭크 Practice Arithmetic Operators

 해커랭크 Practice Arithmetic Operators

문제 Read two integers from STDIN and print three lines where: The first line contains the sum of the two numbers. The second line contains the difference of the two numbers (first - second).

The third line contains the product of the two numbers. 답 if __name__ == '__main__': a = int(input()) b = int(input()) print (a+b) print (a-b) print (a*b) https://www.hackerrank.com/challenges/py-if-else/problem Python If-Else | HackerRank Practice using if-else conditional statements!

www.hackerrank.com...