fix
This commit is contained in:
parent
467749607c
commit
0e61f3100f
2 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
use std::ffi::{CStr, CString};
|
||||
use std::ffi::CString;
|
||||
use pyo3::ffi::c_str;
|
||||
use pyo3::prelude::*;
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
pub fn main() {
|
||||
let mut input = String::new();
|
||||
std::io::stdin().read_line(&mut input).unwrap();
|
||||
let a: u128 = input.trim().parse().unwrap();
|
||||
let a: u128 = input.trim().parse().expect("Ocakavali sme prirodzene cislo");
|
||||
input.clear();
|
||||
std::io::stdin().read_line(&mut input).unwrap();
|
||||
let b: u128 = input.trim().parse().unwrap();
|
||||
let b: u128 = input.trim().parse().expect("ocakavali sme prirodzene cislo");
|
||||
input.clear();
|
||||
|
||||
devidable(a, b);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue