Run ID:147530

提交时间:2026-02-05 22:24:49

#include <stdio.h> int main() { int a, b, c, temp; scanf("%d %d %d", &a, &b, &c); if (a > b) {temp = a; a = b; b = temp;} if (a > c) {temp = a; a = c; c = temp;} if (b > c) {temp = b; b = c; c = temp;} printf("%d %d %d\n", a, b, c); return 0; }