Skip to content

Instantly share code, notes, and snippets.

@Shinoryo
Created February 21, 2021 12:31
Show Gist options
  • Save Shinoryo/757f4242312f501212edde664e16f890 to your computer and use it in GitHub Desktop.
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).
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