본문 바로가기
Beakjoon&프로그래머스/Java

[백준/Java] 20499번 Darius님 한타 안 함?

by 현장 2022. 4. 18.

-Code

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String[] kda = sc.nextLine().split("/");
        int result = Integer.parseInt(kda[0]) + Integer.parseInt(kda[2]);
        int d = Integer.parseInt(kda[1]);
        if (result < d || d == 0) {
            System.out.println("hasu");
        } else {
            System.out.println("gosu");
        }

    }
}