#32170: classnumber


oh_my_god (often)


#include <stdio.h>
#include <stdlib.h>
int main()
{
    int n;
    while(    scanf("%d",&n)!=EOF    )
    {
            printf("'C' can use printf(\"\%%d\",n); to show integer like %d\n",n);
    }


}