solutions: 281A

This commit is contained in:
Muhammad Nauman Raza 2025-01-18 20:13:21 +00:00
parent aa2729e377
commit 4b59bcc717
Signed by: devraza
GPG key ID: 91EAD6081011574B

8
solutions/rust/281A.rs Normal file
View file

@ -0,0 +1,8 @@
use std::io;
fn main() {
let mut s = String::new();
io::stdin().read_line(&mut s).unwrap();
print!("{}{}", s[0..1].to_uppercase(), &s[1..s.len()]);
}