#include int main() { int a = 17; int b = 5; int remainder = a % b; printf("Remainder of %d divided by %d is %d\n", a, b, remainder); return 0; }