use modint::Modint998244353; type Mint = Modint998244353; fn main() { let n = { let mut line = String::new(); std::io::stdin().read_line(&mut line).unwrap(); line.trim().parse::().unwrap() }; println!("{}", Mint::new(3).pow(n)); } pub mod modint { //! This module implements modular arithmetic. use std::ops::{Add, AddAssign, Div, DivAssign, Mul, MulAssign, Neg, Sub, SubAssign}; type InnerType = u32; /// Return `x` such that `a * x` is equivalent to `1` with `m` as the modulus. fn modinv(a: u32, m: u32) -> u32 { let (mut a, mut b, mut s, mut t) = (a as i64, m as i64, 1, 0); while b != 0 { let q = a / b; a -= q * b; std::mem::swap(&mut a, &mut b); s -= q * t; std::mem::swap(&mut s, &mut t); } assert_eq!( a.abs(), 1, "\ There is no multiplicative inverse of `a` with `m` as the modulus, \ because `a` and `m` are not prime to each other (gcd(a, m) = {}).", a.abs() ); ((s % m as i64 + m as i64) % m as i64) as u32 } pub trait Reminder { /// Return the remainder divided by `modulus`. fn reminder(self, modulus: InnerType) -> InnerType; } macro_rules! impl_reminder_for_small_unsigned_int { ($($unsigned_small_int: tt), *) => { $( impl Reminder for $unsigned_small_int { fn reminder(self, modulus: InnerType) -> InnerType { self as InnerType % modulus } } )* }; } // Implement `Reminder` trait for `u8`, `u16` and `u32`. impl_reminder_for_small_unsigned_int!(u8, u16, u32); macro_rules! impl_reminder_for_large_unsigned_int { ($($unsigned_large_int: tt), *) => { $( impl Reminder for $unsigned_large_int { fn reminder(self, modulus: InnerType) -> InnerType { (self % modulus as Self) as InnerType } } )* }; } // Implement `Reminder` trait for `usize`, `u64` and `u128`. impl_reminder_for_large_unsigned_int!(usize, u64, u128); macro_rules! impl_reminder_for_small_signed_int { ($($signed_small_int: tt), *) => { $( impl Reminder for $signed_small_int { fn reminder(self, modulus: InnerType) -> InnerType { (self as i32 % modulus as i32 + modulus as i32) as InnerType % modulus } } )* }; } // Implement `Reminder` trait for `i8`, `i16` and `i32`. impl_reminder_for_small_signed_int!(i8, i16, i32); macro_rules! impl_reminder_for_large_signed_int { ($($signed_large_int: tt), *) => { $( impl Reminder for $signed_large_int { fn reminder(self, modulus: InnerType) -> InnerType { (self % modulus as Self + modulus as Self) as InnerType % modulus } } )* }; } // Implement `Reminder` trait for `isize`, `i64` and `i128`. impl_reminder_for_large_signed_int!(isize, i64, i128); /// Structure for modular arithmetic. #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] pub struct Modint { rem: InnerType, } impl std::fmt::Display for Modint { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { write!(f, "{}", self.rem) } } impl Default for Modint { /// Return a `Modint` instance equivalent to `0`. fn default() -> Self { Self::raw(0) } } impl From for Modint where T: Reminder, { fn from(value: T) -> Self { Self::new(value) } } impl Add> for Modint { type Output = Self; fn add(self, rhs: Modint) -> Self::Output { Self::raw((self.rem + rhs.rem) % MODULUS) } } impl Sub> for Modint { type Output = Self; fn sub(self, rhs: Modint) -> Self::Output { Self::raw((self.rem + MODULUS - rhs.rem) % MODULUS) } } impl Mul> for Modint { type Output = Self; fn mul(self, rhs: Modint) -> Self::Output { Self::raw((self.rem as u64 * rhs.rem as u64 % MODULUS as u64) as InnerType) } } impl Div> for Modint { type Output = Self; #[allow(clippy::suspicious_arithmetic_impl)] fn div(self, rhs: Modint) -> Self::Output { self * rhs.inv() } } impl Neg for Modint { type Output = Self; fn neg(self) -> Self::Output { Self::raw((MODULUS - self.rem) % MODULUS) } } impl AddAssign> for Modint { fn add_assign(&mut self, rhs: Modint) { *self = *self + rhs; } } impl SubAssign> for Modint { fn sub_assign(&mut self, rhs: Modint) { *self = *self - rhs; } } impl MulAssign> for Modint { fn mul_assign(&mut self, rhs: Modint) { *self = *self * rhs; } } impl DivAssign> for Modint { fn div_assign(&mut self, rhs: Modint) { *self = *self / rhs; } } impl Add for Modint where T: Reminder, { type Output = Modint; fn add(self, rhs: T) -> Self::Output { self + Self::new(rhs) } } impl Sub for Modint where T: Reminder, { type Output = Modint; fn sub(self, rhs: T) -> Self::Output { self - Self::new(rhs) } } impl Mul for Modint where T: Reminder, { type Output = Modint; fn mul(self, rhs: T) -> Self::Output { self * Self::new(rhs) } } impl Div for Modint where T: Reminder, { type Output = Modint; fn div(self, rhs: T) -> Self::Output { self / Self::new(rhs) } } impl AddAssign for Modint where T: Reminder, { fn add_assign(&mut self, rhs: T) { *self += Modint::new(rhs); } } impl SubAssign for Modint where T: Reminder, { fn sub_assign(&mut self, rhs: T) { *self -= Modint::new(rhs); } } impl MulAssign for Modint where T: Reminder, { fn mul_assign(&mut self, rhs: T) { *self *= Modint::new(rhs); } } impl DivAssign for Modint where T: Reminder, { fn div_assign(&mut self, rhs: T) { *self /= Modint::new(rhs); } } impl Modint { /// Return the modulus. pub fn modulus() -> InnerType { MODULUS } /// Return a `Modint` instance equivalent to `a`. pub fn new(a: T) -> Self where T: Reminder, { Self { rem: a.reminder(MODULUS), } } /// Create a `Modint` instance from a non-negative integer less than `MODULUS`. pub fn raw(a: InnerType) -> Self { Self { rem: a } } /// Return `x` such that `x * q` is equivalent to `p`. pub fn frac(p: T, q: T) -> Self where T: Reminder, { Self::new(p) / Self::new(q) } /// Return the remainder divided by `MODULUS`. /// The returned value is a non-negative integer less than `MODULUS`. pub fn rem(self) -> InnerType { self.rem } /// Return the modular multiplicative inverse. pub fn inv(self) -> Self { Self { rem: modinv(self.rem, MODULUS), } } /// Calculate the power of `exp` using the iterative squaring method. pub fn pow(self, exp: T) -> Self where T: ToExponent, { let mut ret = Self::new(1); let mut mul = self; let exp = exp.to_exponent(); let mut t = exp.abs; while t != 0 { if t & 1 == 1 { ret *= mul; } mul *= mul; t >>= 1; } if exp.neg { ret = ret.inv(); } ret } } pub struct Exponent { neg: bool, abs: u128, } pub trait ToExponent { fn to_exponent(self) -> Exponent; } macro_rules! impl_to_exponent_for_unsigned_int { ($($ty: tt), *) => { $( impl ToExponent for $ty { fn to_exponent(self) -> Exponent { Exponent { neg: false, abs: self as u128, } } } )* }; } impl_to_exponent_for_unsigned_int!(usize, u8, u16, u32, u64, u128); macro_rules! impl_to_exponent_for_signed_int { ($($ty: tt), *) => { $( impl ToExponent for $ty { fn to_exponent(self) -> Exponent { Exponent { neg: self.is_negative(), abs: self.abs() as u128, } } } )* }; } impl_to_exponent_for_signed_int!(isize, i8, i16, i32, i64, i128); /// The type `Modint` with 1000000007 as the modulus. pub type Modint1000000007 = Modint<1000000007>; /// The type `Modint` with 998244353 as the modulus. pub type Modint998244353 = Modint<998244353>; }