Created
February 18, 2021 11:48
This is my code of Problem A of AtCoder Beginner Contest 180.
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
n, a, b = [int(i) for i in input().split()] | |
print(n-a+b) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment