mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
10 lines
104 B
C++
10 lines
104 B
C++
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
char text[20];
|
|
fgets(text, sizeof text, stdin);
|
|
return 0;
|
|
}
|
|
|