#![allow(non_snake_case)] use proconio::input; fn main() { input! { N: usize, } let w = 3; println!("{:0width$}", N, width=w); }