Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
#include<stdio.h> int main() {int a,b,c,k; scanf("%d %d %d",&a,&b,&c); if(b>a) { k=b; b=a; a=k;} if(c>b) {k=c; c=b; b=k;
} if(a<c) k=c; c=b; b=a; a=c; printf("%d %d %d",a,b,c); return 0; }