#include <stdio.h> int main() { int a = 5; printf("%d %d %d", a, a++, ++a); return 0; }
09.09.2025 10:06