Skip to content
Snippets Groups Projects
Select Git revision
  • d27feefe25cf28b92a9c656fe13f4e033980b767
  • main default protected
  • BlitzMomo-main-patch-90921
3 results

std.c

Blame
  • std.c 143 B
    #include <stdio.h>
    
    int main()
    {
    	int a;
    	fscanf(stdin,"%d",&a);
    	fprintf(stdout,"out:%d\n",a);
    	fprintf(stderr,"err:%d\n",a);
    	
    	return a;
    }