module pind.samples.ja.input.input_1; import std.stdio; void main() { write("How many students are there? "); /* 入力から読み込んだ情報を格納するために * 使用する変数の定義。 */ int studentCount; // 入力データをその変数に格納する readf("%s", &studentCount); writeln("Got it: There are ", studentCount, " students."); }