#include <stdio.h>
int main()
{
int i=3;
int j=5;
scanf("%d%d", &i, &j);
if (i >= j)
printf("%d - %d = %d\n", i, j, i - j);
else
printf("%d - %d = %d\n", i, j, i - j);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: