Advertisement
Josif_tepe

Untitled

Jan 16th, 2024
598
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <ctype.h>
  3. #include <string.h>
  4. int main() {
  5.     char s[1000];
  6.     fgets(s, 500, stdin);
  7.  
  8.     printf("%s\n", s);
  9.     return 0;
  10. }
  11.  
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement