Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on May 27, 2021. It is now read-only.

Commit 66ae401

Browse files
committed
fixing travis build
1 parent fbaf1c1 commit 66ae401

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

framework/test_data.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,16 @@ class Solution{
4747
}
4848
"""
4949

50-
51-
52-
50+
python3_source_code_add_two_numbers = """
51+
# s = input()
52+
# print(s)
53+
# numbers = s.split()
54+
number1 = input()
55+
number2 = input()
56+
57+
sum = int(number1) + int(number2)
58+
print(sum)
59+
"""
5360

5461
python2_source_code_add_two_numbers = """
5562
number1 = raw_input()

0 commit comments

Comments
 (0)