#include<stdio.h>//此代码为数字提取int main(){ int n,a,b,c; scanf("%d",&n); a=n/100%10; b=n/10%10; c=n%10; printf("%d %d %d",a,b,c); return 0;}