Create BurungBeo.c

master
MD15 2020-04-10 12:08:13 +07:00 committed by GitHub
parent 8ed178f2c2
commit 7d67c3120c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main () {
char input [1001];
gets(input);
printf("%s\n", input);
}