#include <stdio..h>
main() {
int a,b;
scanf("%d%d",&a,&b);
printf("%d + %d = %d\n", a, b, a+b);
printf("%d - %d = %d\n", a, b, a-b);
printf("%d / %d = %d\n", a, b, a/b);
printf("%d * %d = %d\n", a, b, a*b);
printf("%d % %d = %d\n", a, b, a+b);
}
If you look at the last line in this code, you want to print%, but% does not. Please let me know if %% is correct