0
Can someone please help me make this program for the computer class?
Perform a program that requests the entry of 2 integers, perform the necessary operations and show the result of the division by 3 and the rest through two messages per screen. Thank you
1 Answer
0
I can't do java but here is python:
int1 = int(input("Insert int 1: "))
int2 =int( input("Insert int 2: "))
addition = int1+int2
print(addition)
print(addition/3)