#include int main() { int a = 7; int b = 3; int result = a % b; printf("%d %% %d = %d\n", a, b, result); return 0; }