#include <stdio.h>

int main() {
    int c1 ,c2;

    c1=getchar();
    c2=fgetc(stdin);

    putchar(c1);
    fputc(c2, stdout);
    
    return 0;
}

Embed on website

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