#include <stdio.h>

int main() {
    int valor1, valor2;
    printf("Digite dois valores\n");
    scanf("%d", &valor1);
    scanf("%d", &valor2);

    printf("Os seus valores são %d e %d", valor1, valor2);
    
    return 0;
}

Embed on website

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