15 lines
200 B
Python
15 lines
200 B
Python
year = input()
|
|
|
|
stoletie = 0
|
|
|
|
if int(year)/100 < 1:
|
|
stoletie = 1
|
|
|
|
elif int(year)/100 == int(year)//100:
|
|
stoletie = int(year)/100
|
|
|
|
else:
|
|
stoletie = int(year)//100 + 1
|
|
|
|
|
|
print(int(stoletie)) |