Submission #949059

#TimeUsernameProblemLanguageResultExecution timeMemory
949059rainboy직사각형 게임 (KPI13_game)C11
0 / 1
1 ms416 KiB
#include <stdio.h> int main() { int a, b, c, d; scanf("%d%d%d%d", &a, &b, &c, &d); printf(a * b < c * d ? "Second\n" : "First\n"); return 0; }

Compilation message (stderr)

game.c: In function 'main':
game.c:6:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
    6 |  scanf("%d%d%d%d", &a, &b, &c, &d);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...