This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sample inputs (# note: The values given in the prefix code(grey) will be changed by the autograder according to the testcase while running them. | |
a = 5 | |
b = 6 | |
price, discount_percent = 80, 5.75 | |
total_mins = 470 | |
# <eoi> | |
output1 = int(a+b) # int: sum of a and b | |
output2 = int(2*(a+b)) # int: twice the sum of a and b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grpa 1 | |
x1 = input() | |
x2 = input() | |
y1 = input() | |
y2 = input() | |
y3 = input() | |
z = input() | |
temp_x = x1 |