#include <stdio.h>
#include <stdlib.h>
#include "pico/stdlib.h"
int main(){
stdio_init_all();
char userInput;
while(1){
userInput = getchar_timeout_us(0);
if(userInput != 255) {
if(userInput == 13) {
printf("\n");
} else {
printf("%c", userInput);
}
}
}
}