module main;

import std.stdio;

void main(string[] args) {
	auto plus_odin = (int x) => x + 1;
	writeln(plus_odin(12));
}