제출 #647732

#제출 시각아이디문제언어결과실행 시간메모리
647732vdlongif-else 문 1 (BSC_0_8)C++17
100 / 100
1 ms304 KiB
#include <bits/stdc++.h>

using namespace std;

int main()
{
    int a; cin >> a;
    if (a == 0)
        cout << "zero";
    else 
        cout << "nonzero";
}
#Verdict Execution timeMemoryGrader output
Fetching results...