#include <stdio.h>

#define PRNT(a, b) \
    printf("value 1 = %d\n", a); \
    printf("value 2 = %d\n", b);


int main() {
    int x = 2;
    int y = 3;
    
    PRNT(x, y);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: