Submission #276582


Source Code Expand

    #include <stdio.h>
     
    int Main(void)
    {
    int H1, H2;
     
    scanf_s("%d", &H1);
    scanf_s("%d", &H2);
     
    printf("%d", H1 - H2);
     
    return(0);
    }

Submission Info

Submission Time
Task A - 積雪深差
User kelovey8
Language C (GCC 4.6.4)
Score 0
Code Size 197 Byte
Status CE

Compile Error

/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/crt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
/tmp/ccJyEy7H.o: In function `Main':
Main.c:(.text+0x11): undefined reference to `scanf_s'
Main.c:(.text+0x22): undefined reference to `scanf_s'
collect2: ld returned 1 exit status