How to take multiple input (string,integer,integer) in Python 3 Add Comment Edit n=int(input()) num=[] for i in range(0,n): op=input().split() #Take multiple input as a list by split(). 1st input is op[0],2nd ... Read More
Subtract Two Numbers in Assembly 8086 Add Comment Edit .model small .stack 100h .data msg db 'THE SUBTRACTION OF$' msg1 db ' $' msg2 db 'AND$' msg3 db 'IS$... Read More
Multiply Two numbers in Assembly 8086 Add Comment Edit .model small .stack 100h .data msg db 0ah,0dh,'THE Multiplication Is=$' .code main proc mov ah,1 int 21h m... Read More