/in/foo.cc: In function 'int main()':
/in/foo.cc:11:13: warning: 'char* gets(char*)' is deprecated [-Wdeprecated-declarations]
11 | gets(a1);
| ~~~~^~~~
In file included from /usr/include/c++/12/cstdio:42,
from /usr/include/x86_64-linux-gnu/c++/12/bits/stdc++.h:46,
from /in/foo.cc:1:
/usr/include/stdio.h:605:14: note: declared here
605 | extern char *gets (char *__s) __wur __attribute_deprecated__;
| ^~~~
/in/foo.cc:12:13: warning: 'char* gets(char*)' is deprecated [-Wdeprecated-declarations]
12 | gets(b1);
| ~~~~^~~~
/usr/include/stdio.h:605:14: note: declared here
605 | extern char *gets (char *__s) __wur __attribute_deprecated__;
| ^~~~
/usr/bin/ld: /tmp/ccDzmxsY.o: in function `main':
foo.cc:(.text.startup+0x62): warning: the `gets' function is dangerous and should not be used.