1998년생인 내가 태국에서는 2541년생?! (18108)

Created:

Baekjoon No.18108
두 수의 차인 543을 빼면 된다.

Bash

Bash
1
2
read year
echo $((year - 543))

C

C
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int main(void) {
	int year;
	scanf("%d", &year);
	printf("%d\n", year-543);

	return 0;
}

Node.js

JavaScript
1
2
let year = Number(require("fs").readFileSync(0).toString().trim());
console.log(year - 543);

PHP

PHP
1
2
3
4
<?php
	fscanf(STDIN, "%d", $year);
	echo $year - 543;
?>

Python3

Python
1
print(int(input()) - 543)

Ruby

Ruby
1
puts gets.chomp.to_i - 543