Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public class MyClass {
  2. public static void main(String args[]) {
  3. int x=346315*591113+491539;
  4. System.out.println(x);
  5. }
  6. }
  7.  
  8. class MyClass {
  9. public static void main(String args[]) {
  10. long m= 346315;
  11. long n = 591113;
  12. long sum = 491539;
  13. long res= (m*n)+sum;
  14. System.out.println(res);
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement