Created
February 21, 2021 12:31
-
-
Save Shinoryo/757f4242312f501212edde664e16f890 to your computer and use it in GitHub Desktop.
This is my code of EX9 of AtCoder Programming Guide for beginners(APG4b).
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
x, a, b = [int(x) for x in input().split()] | |
x += 1 | |
print(x) | |
x *= (a+b) | |
print(x) | |
x *= x | |
print(x) | |
x -= 1 | |
print(x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment