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

[백준/Ada] 백준 2372번 Livestock Count

by 현장 2024. 2. 6.

-Code

with Ada.Text_IO;
procedure Hello is begin
    Ada.Text_IO.Put_Line("Animal      Count");
    Ada.Text_IO.Put_Line("-----------------");
    Ada.Text_IO.Put_Line("Chickens      100");
    Ada.Text_IO.Put_Line("Clydesdales     5");
    Ada.Text_IO.Put_Line("Cows           40");
    Ada.Text_IO.Put_Line("Goats          22");
    Ada.Text_IO.Put_Line("Steers          2");
end Hello;