Computer Science, asked by kumarsanu5699, 1 month ago

Input two numbers n1 and n2 determine whether n1 decides n2 or not

Answers

Answered by hossainAhamed
0

Answer:

In c language

Explanation:

#include <stdio.h>

int main(){

  int a, b;

  scanf("%d",&a);

  scanf("%d",&b);

 if(a==b)

   printf("equal")

}

Similar questions