Yukovskaya
Yukovskaya (Russian: Юковская) is a rural locality (a village) in Noginskoye Rural Settlement, Syamzhensky District, Vologda Oblast, Russia. The population was 3 as of 2002.[2]
Yukovskaya Юковская | |
---|---|
Village | |
Yukovskaya Yukovskaya | |
Coordinates: 60°06′N 41°16′E[1] | |
Country | Russia |
Region | Vologda Oblast |
District | Syamzhensky District |
Time zone | UTC+3:00 |
Geography
The distance to Syamzha is 17 km, to Noginskaya is 16.5 km. Yeskino is the nearest rural locality.
gollark: ```ruststruct Fib1 { cache: Vec<u128>}impl Iterator for Fib1 { type Item = u128; fn next(&mut self) -> Option<Self::Item> { let n = self.cache.len(); let next = self.cache[n - 1].wrapping_add(self.cache[n - 2]); self.cache.push(next); Some(next) }}fn fib1() -> Fib1 { Fib1 { cache: vec![0, 1] } }fn main() { for n in fib1() { print!("{} ", n); }}```
gollark: I prefer it this way.
gollark: Idea: wrapping_add.
gollark: Unlike LyricLy's bad thing, which timed out.
gollark: See, it was too fast, it overflowed.
References
- Карта Сямженского района Вологодской области
- Данные переписи 2002 года: таблица 2С. М.: Федеральная служба государственной статистики, 2004.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.