lab 2

This was lab 2, in this lab in learned the importance of commas and writing python programs.

inputstr=input(‘enter frist interger’)
inputint=int(inputstr)
inputxstr=input(‘enter second interger’)
inputxint=int(inputxstr)
             
print(‘the sum of’, inputint, ‘and’, inputxint,’will be:’, inputint+inputxint)
print(‘The difference of’, inputint,’and’, inputxint,’will be:’, inputint-inputxint)
print(‘the product of’, inputint,’and’,inputxint,’will be’, inputint*inputxint)
print(‘the quotient of’,inputint,’and’,inputxint,’will be’,inputint/inputxint,’with a remainder of’,inputint%inputxint)