My issue
Read two integers from input
a, b = map(int, input().split())
Calculate their sum
result = a + b
Output the sum
print(result)
Learning course: Practice Python
Problem Link: Rearrange Code Practice Problem in Python
a, b = map(int, input().split())
result = a + b
print(result)
Learning course: Practice Python
Problem Link: Rearrange Code Practice Problem in Python