Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
print "Number 1: "
|
||||
x = int(input())
|
||||
print "Number 2: "
|
||||
y = int(input())
|
||||
|
||||
println format("Sum: %d", x + y)
|
||||
println format("Difference: %d", x - y)
|
||||
println format("Product: %d", x * y)
|
||||
println format("Quotient: %f", x / y)
|
||||
|
||||
println format("Remainder: %d", x % y)
|
||||
println format("Power: %d", x ^ y)
|
||||
Loading…
Add table
Add a link
Reference in a new issue