import java.util.Scanner;
import java.math.BigInteger;
public class Main {
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
BigInteger a,b;
char c;
while(input.hasNext())
{
a=input.nextBigInteger();
c=input.next().charAt(0);
b=input.nextBigInteger();
if(c=='/')
{
System.out.println(a.divide(b));
}
if(c=='%')
{
System.out.println(a.mod(b));
}
}
}
}
import java.math.BigInteger;
public class Main {
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
BigInteger a,b;
char c;
while(input.hasNext())
{
a=input.nextBigInteger();
c=input.next().charAt(0);
b=input.nextBigInteger();
if(c=='/')
{
System.out.println(a.divide(b));
}
if(c=='%')
{
System.out.println(a.mod(b));
}
}
}
}
0 comments:
Post a Comment