2025-05-24 16:59:22 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int f(int c, int d);
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
sscanf(argv[1], "%d", &x);
|
|
|
|
sscanf(argv[2], "%d", &y);
|
|
|
|
|
|
|
|
int res = f(x, y);
|
|
|
|
|
2025-05-24 17:18:04 +03:00
|
|
|
printf("un res = %d\n", res);
|
2025-05-24 16:59:22 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|