Skip to content
Snippets Groups Projects
Select Git revision
  • be7352f79feb61db9c8582b71edc63b1d4f8aae0
  • main default protected
  • PARKMINSUK-main-patch-68250
3 results

sw.py

Blame
  • hello.c 168 B
    #include <stdio.h>
    
    int main()
    {
    	int a;
    	fscanf(stdin ,"%d", &a);
    	fprintf(stdout ,"Hello World! %d\n", a);
    	fprintf(stderr ,"Hello stderr %d\n", a+100);
    	return 0;
    }