solutions: 281A
This commit is contained in:
parent
aa2729e377
commit
4b59bcc717
1 changed files with 8 additions and 0 deletions
8
solutions/rust/281A.rs
Normal file
8
solutions/rust/281A.rs
Normal 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()]);
|
||||
}
|
Loading…
Reference in a new issue